Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I use JNI in a Java Applet?

Is it possible to use JNI (Java Native Interface) in Applets, has anyone has tried?

like image 768
evan Avatar asked Dec 06 '10 12:12

evan


2 Answers

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.

like image 110
DwB Avatar answered Nov 13 '22 18:11

DwB


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

like image 34
r.piesnikowski Avatar answered Nov 13 '22 20:11

r.piesnikowski