本文介绍了JNI中的UnsatisfiedLinkError的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用JNI从Java调用C#代码
JNI调用C ++库,然后C ++调用C#

我的代码在这里

I want to call C# code from Java using JNI
JNI call C++ Library,then C++ call C#

My Code is here

package javacsharptest;

public class JavaCSharpTest {
  public native void display();
    static {
        System.loadLibrary("JavaCSharpTest");
    }
    public static void main (String[] args) {
            new JavaCSharpTest().display();
    }
}



我收到此错误,

线程主"中的异常java.lang.UnsatisfiedLinkError:javacsharptest.JavaCSharpTest.display()V
在javacsharptest.JavaCSharpTest.display(本机方法)
在javacsharptest.JavaCSharpTest.main(JavaCSharpTest.java:18)


我已经将JavaCSharpTest.dll放入C:\ Windows \ System32

请帮助我:confused:



I got this error,

Exception in thread "main" java.lang.UnsatisfiedLinkError: javacsharptest.JavaCSharpTest.display()V
at javacsharptest.JavaCSharpTest.display(Native Method)
at javacsharptest.JavaCSharpTest.main(JavaCSharpTest.java:18)


I''ve already put JavaCSharpTest.dll into C:\Windows\System32

Please Help me:confused:

推荐答案




这篇关于JNI中的UnsatisfiedLinkError的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-15 15:11