简体   繁体   中英

java.lang.UnsatisfiedLinkError

HI ALL,

I got an error java.lang.UnsatisfiedLinkError, I am not getting wat the problem is.

public static void main(String[] args) {
  try {
     System.loadLibrary("pfcasyncmt");
  }
  catch(){
  }
}

ERROR- xception in thread "main" java.lang.UnsatisfiedLinkError: no pfcasyncmt in java.library.path

Java cannot find the dll library. You must set the java.library.path property to point to the dll you want to load, when starting your application.`

java -Djava.library.path="the directory which contains your dll" .........

在Windows操作系统中,键入命令:“ path”可以获取java.libray.path的真实路径。或System.getProperty(“ java.library.path”),将dll放入该结果的任何路径中。希望我清除我的答案。

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