I'm working on a Java project that uses the JNI. The JNI calls a custom library that I've written myself, let's say mylib.dll, and that depends on a 3rd party library, libsndfile-1.dll.

When I run my program it crashes with java.lang.UnsatisfiedLinkError: C:...path...\mylib.dll: Can't find dependent libraries.

I've searched this site (and others) and I've tried a number of fixes:

  1. I ran dependency walker. DW gave a couple of warnings -- that two libraries required by libsndfile, MPR.DLL and SHLWAPI.DLL, had "unresolved imports" -- but their FAQ said that these warnings could be safely ignored. DW FAQ

  2. I fixed the method names in mylib.dll, as suggested here. The method names had somehow gotten mangled by the compiler, but I added linker flags and the dll method names now match those in my jni header file exactly.

  3. I put all of these DLLs in the same directory -- the same directory as the .jar that calls them -- to ensure that they're on the right PATH.

No dice.

Does anyone have any idea what's going on?

I'm doing my development in Visual Studio 2010 on a MacBook pro (via Parallels). I'm doing my testing in Windows XP on a toshiba laptop.

link|improve this question

73% accept rate
have you set -Djava.library.path ? – Jochen Bedersdorfer May 23 '11 at 2:41
I haven't, actually, because I'm not launching the program from the command line. I'm writing a library for Processing (processing.org), and Processing is responsible for launching my code. I've checked the java library path at runtime, though, and the folder containing my DLLs is on it. – dB' May 23 '11 at 3:02
As I said, all the DLLs are in the same folder, next to my .jar file. So I don't think the problem is that they're not on the path. But thanks anyway. – dB' May 23 '11 at 3:05
1  
On Windows we've had to put .dll files in the [JRE]\bin directory (same place where java.exe, etc. are) to get Java to see them automatically without having to muck with command line options or environment variables. – QuantumMechanic May 23 '11 at 3:28
Hmm... ok, I tried putting all my .dlls in [JRE]\bin. This works! – dB' May 23 '11 at 6:28
feedback

3 Answers

up vote 3 down vote accepted

I'm pretty sure the classpath and the shared library search path have little to do with each other. According to The JNI Book (which admittedly is old), on Windows if you do not use the java.library.path system property, the DLL needs to be in the current working directory or in a directory listed in the Windows PATH environment variable.

link|improve this answer
Yeah, CLASSPATH is not used at all. I'm not sure the cwd is used at all, either. java.library.path or simply PATH will work. @dB', the place where you've got them now is wrong. – Ernest Friedman-Hill May 23 '11 at 3:41
Thanks so much guys! I think part of the problem here was a confusion on my part between the Windows PATH environment variable, java.library.path and the java CLASSPATH. It all makes more sense now. – dB' May 23 '11 at 6:26
feedback

I used to have exactly the same problem, and finally it was solved.

I put all the dependent DLLs into the same folder where mylib.dll was stored and make sure the JAVA Compiler could find it (if there is no mylib.dll in the compilation path, there would be an error reporting this during compiling). The important thing you need to notice is you must make sure all the dependent libs are of the same version with mylib.dll, for example if your mylib.dll is release version then you should also put the release version of all its dependent libs there.

Hope this could help others who have encountered the same problem.

link|improve this answer
feedback

I want to inform this interesting case, after tried all the above method, the error is still there. The weird thing is it works on a Windows 7 computer, but on Windows XP it is not. Then I use dependency walker and found on the Windows XP there is no VC++ Runtime as my dll requirement. After installing VC++ Runtime package (here enter link description here) it works like a charm. The thing that disturbed me is it keeps telling Can't find dependent libraries, while intuitively the JNI dependent dll is there, however it finally turns out the JNI dependent dll requires another dependent dl. I hope this helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.