java.lang.UnsatisfiedLinkError

元气小坏坏 提交于 2020-01-06 08:14:24

问题


Exception in thread "Thread-17" java.lang.UnsatisfiedLinkError: MetadataMatching.SimXMLModule.computeStructSimXML([Ljava/lang/String;)[D
    at MetadataMatching.SimXMLModule.computeStructSimXML(Native Method)
    at MetadataMatching.SimXMLModule.<init>(SimXMLModule.java:49)
    at MetadataMatching.MatchMetadata.run(MatchMetadata.java:65)

computeStructSimXML" is a native method implemented by C++ in "libSimXMLModule.so

Why it prompts throw java.lang.UnsatisfiedLinkError , anyone can help me ? Thank you very much?


回答1:


The library containing the native method computeStructSimXML cannot be found. You need to add libSimXMLModule.so to your LD_LIBRARY_PATH.



来源:https://stackoverflow.com/questions/5842037/java-lang-unsatisfiedlinkerror

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!