can anyone tell me the default java.library.path..
807589Mar 15 2007 — edited Oct 12 2008hi,
i'm using jdk5 with netbeans ide..
i'm trying to load an interface in my project. this interface has its dll and jar file..
i have tried system.load(), system.loadlibrary(), system.setProperties()..
it gives a runtime error that class definitions not found... wht should i do?
i've added the jar file in the library of the project using netbeans. there all the class files can be seen.. but it gives an error as follows:
Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\jri\jri.dll: Can't find dependent libraries
at java.lang.ClassLoader$NativeLibrary.load(Native Method)
at java.lang.ClassLoader.loadLibrary0(ClassLoader.java:1751)
at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1647)
at java.lang.Runtime.load0(Runtime.java:769)
at java.lang.System.load(System.java:968)
at rtest.main(rtest.java:59)
what should i do???