简体   繁体   中英

Java JNI trouble

I have the .java, .class, .cpp, .h files: http://www.ibm.com/developerworks/java/tutorials/j-jni/section2.html

After reading TotalFrickinRockstarFromMars's comment, I tried setting up classpath.

What's wrong?

啦啦 Sample1.dll IS there.

Text version:

F:\\workspace\\JavaJNIProj\\src>java Sample1

    Exception in thread "main" java.lang.UnsatisfiedLinkError: F:\workspace\JavaJNIProj\src\Sample1.dll: Can't find dependent libraries
      at java.lang.ClassLoader$NativeLibrary.load(Native Method)
      at java.lang.ClassLoader.loadLibrary0(Unknown Source)
      at java.lang.ClassLoader.loadLibrary(Unknown Source)
      at java.lang.Runtime.loadLibrary0(Unknown Source)
      at java.lang.System.loadLibrary(Unknown Source)
      at Sample1.main(Sample1.java:10)

It looks like you miss some dependency DLLs. You can download DependencyWalker http://www.dependencywalker.com/

This supposed to help you to find it.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM