tags:

views:

49

answers:

1

Hello.

I am trying to use an applet I downloaded. I get the following error when using it

Can't load library 'friend'.
java.lang.UnsatisfiedLinkError:no friend in java.library.path

No resource '/libfriend.so' found.

Please help. Thank you.

+1  A: 

the application is looking for a native library called libfriend.so in your path. I'm assuming you're on linux, if so and you have the .so file you can add it to your path, if you are on windows you are out of luck.

broschb
I did that still getting the same error.
Amit
I believe that should that not be LD_LIBRARY_PATH rather than PATH
vickirk