Hi stephan,
Thank you for your suggestion. I have used the native library jar in RAD and have given the .dll file path in the native library location in that jar.My program is ,
public class testFromDllFile {
private native int GetIMSData(String A,String B,String C,String D,int x,String E,int y,String F,int z,int a,String G,String H);
public static void main(String[] args) {
int x = new testFromDllFile().GetIMSData("A","B","C","D",0,"E",0,"",0,0,"","F");
System.out.println("x"+x);
}
static {
System.loadLibrary("TRNSACTN");
}
}
But when i run this program am getting "The java class could not be loaded. java.lang.UnsatisfiedLinkError: D:\DLL_file\TRNSACTN.DLL: Can't find dependent libraries" .
Am i missing anything here.?
