6

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

Jonas
  • 121,568
  • 97
  • 310
  • 388
evan
  • 1,120
  • 4
  • 13
  • 32

2 Answers2

5

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.

DwB
  • 37,124
  • 11
  • 56
  • 82
2

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

Community
  • 1
  • 1
r.piesnikowski
  • 2,911
  • 1
  • 26
  • 32