Java Applet consuming client-side dotnet framework redistributable
开发者_如何学JAVAI need to access and use some image manipulation api's other than java's, so is it possible to access the windows .net redistributable api's from a java applet that is signed.
Short Answer: It depends.
There's a pretty good series of articles on Java/.NET interop.
Long Answer: To access features of the .NET runtime library you'll need to wrap them in your own code to expose them as com objects which you can then use with jni.
精彩评论