我正在尝试使用JNI与第三方DLL集成。我编写了一个测试类,看看我是否可以在DLL中调用一个方法,但是我收到了“UnsatisfiedLinkError”错误。
该课程如下所示:
public class MyTest {
native String ConfigureRequest(String a, String b, String c, String d);
static {
System.loadLibrary("my_dll");
}
@Test
public void quickTest(){
String result = this.ConfigureRequest("1", "1", "1", "NoControlBar");
System.out.println("Result: " + result );
}
}
我使用TypeLibrary Viewer来调查DLL,我可以看到该方法在那里(尽管它在包“EIAComInterface.TxnRequests”中说它,所以我想知道我是否需要指定包在方法的某个地方)。我还可以验证方法参数是否正确。
有人可以就此提出建议吗?
非常感谢, Gearoid。
答案 0 :(得分:0)
看起来Jacozoom可能是上述问题的可能解决方案。在我的例子中,事实证明我可以使用SOAP来查询web服务。