UnsatisfiedLinkError

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ycinar
    New Member
    • Oct 2007
    • 39

    UnsatisfiedLinkError

    Hello,

    i have a java project which builds fine but when i come to run it the following error is displayed:

    java.lang.Unsat isfiedLinkError : no FileSystemDll in java.library.pa thjava.lang.Uns atisfiedLinkErr or: no FileSystemDll in java.library.pa th

    i guess the resolution is to get FileSystemDll added to java.library.pa th, correct? if yes, how can i find java.library.pa th and set it again?

    any help is appreciated.
  • ycinar
    New Member
    • Oct 2007
    • 39

    #2
    i found how to set the path, but didnt help either, still getting same error. googled the problem and it says although it finds the file but if not able to load then it gives the same error.

    Comment

    • r035198x
      MVP
      • Sep 2006
      • 13225

      #3
      Originally posted by ycinar
      Hello,

      i have a java project which builds fine but when i come to run it the following error is displayed:

      java.lang.Unsat isfiedLinkError : no FileSystemDll in java.library.pa thjava.lang.Uns atisfiedLinkErr or: no FileSystemDll in java.library.pa th

      i guess the resolution is to get FileSystemDll added to java.library.pa th, correct? if yes, how can i find java.library.pa th and set it again?

      any help is appreciated.
      What platform are you using?

      You can use System.load to load the library specifying the full path to the library. System.loadLiba ry searches the java.library.pa th.
      On some platforms java.library.pa th = PATH (sometimes this is not the case on MAC). You can change it with the -D option when running the java command.

      Comment

      Working...