These are the incomplete steps that i have followed to call a native function from a java program.
- Wrote a java program and then compiled to the
.classfile - From the command
javah - jnii generated a header file with the same name as.classfile. - After that i opened a Microsoft Visual C++ Express , started a new project and set my application type to
dll.
This is the java program that calls the native c method.
class HelloWorld {
private native void print();
public static void main( String args[] ) {
new HelloWorld().print();
}
static {
System.loadLibrary("??"); // what should i write here ?
}
}
And this is the c program
#include <jni.h>
#include <stdio.h>
#include "HelloWorld.h"
JNIEXPORT void JNICALL
Java_HelloWorld_print( JNIEnv *env , jobject obj) {
printf("Hello World!\n");
return;
}
I kept the project name as jni tester and the c file name is HelloWorld.c
In the statement System.loadLibrary(??) What should be the name of the library in the argument ? (Or is there any step that i am missing before i can fill the argument of loadLibrary)
If so what is that i am missing ?