What is the cause of an UnsatisfiedLinkError?

前端 未结 3 964
深忆病人
深忆病人 2020-12-06 11:40

When i am trying to run my program it is giving the following error

       Exception in thread \"main\" java.lang.UnsatisfiedLinkError: no jacob-1.14.3-x86 i         


        
3条回答
  •  自闭症患者
    2020-12-06 11:53

    You need the jacob-1.14.3-x86 library on your java library path.

    On windows, this would be jacob-1.14.3-x86.dll.

    This is a binary file which is used by java to run native methods. It's probably required by some library (jar) you're using.

    In here you can see not only a jar, but also the binary required by the jar. Pick the one for your platform.

提交回复
热议问题