I have implemented a simple java Hello world program which uses JNI to access a native C file. I was successful in implementing it. I have performed the steps mentioned in the below URL.
http://www.java-tips.org/other-api-tips/jni/simple-example-of-using-the-java-native-interface.html.
Now, I have these files -
- HelloWorld.class
- HelloWorld.h
- HelloWorld.so
I need to create an applet with the help of above mentioned files. In other words, I want to use Java Applets with JNI. I have tried searching for it but I got all the solutions for windows .dll file and not for .so file.
Could anyone help me out on this?