java - UnsatisfiedLinkError Can't Load Library -
i working proycon decompiling .class .java, included jd-core-java-1.0.jar file in libraries directory, when compile main class throw exception
exception in thread "main" java.lang.unsatisfiedlinkerror: can't load library: d:\apps\dvlpr\lib/libjd-intellij.so
printed system.getproperty("java.library.path"); outputed
c:\program files\java\jdk1.7.0_01\bin; c:\windows\sun\java\bin; c:\windows\system32; c:\windows; c:\program files (x86)\pc connectivity solution\; c:\python33\; c:\program files\common files\microsoft shared\windows live; c:\program files (x86)\common files\microsoft shared\windows live; c:\windows\system32; c:\windows;c:\windows\system32\wbem; c:\windows\system32\windowspowershell\v1.0\; c:\program files (x86)\windows live\shared; c:\program files (x86)\toshiba\bluetooth toshiba stack\sys\; c:\program files (x86)\toshiba\bluetooth toshiba stack\sys\x64\; c:\program files\nodejs\; c:\program files (x86)\tesseract-ocr; c:\program files\java\jdk1.7.0_01\bin; c:\users\shajeer\appdata\roaming\npm;.
i have tried many methods setting class path...,but not working.anybody please tell me method.
i using netbeans 7.4 ide
according link provided in comments, jd-core-java thin-wrapper java decompiler support intellij ide plugin. java decompiler supports:
- linux 32/64-bit
- windows 32/64-bit
- mac osx 32/64-bit on x86 hardware
however, jd-core-java wrapper only supports linux 64-bit.
you have 2 options:
- contact author , ask windows version
- pull sources bitbucket , port native code windows build windows dll (and send author included in future versions)
Comments
Post a Comment