Can I use JNI in a Java Applet?
Is it possible to use J开发者_运维百科NI (Java Native Interface) in Applets, has anyone has tried?
You can use JNI from an applet, just remember that the applet is running on the client so JNI will be accessing the client for the "NI" part.
I'm not quite good in JNI but I googled link which can help you. It contains info about accessing DLL with JNI. Take a look: Calling a DLL from an Applet via JNI
精彩评论