我有一个.dll文件,这是我在Java中使用。 这个.dll文件有一个参数化的方法,它应该返回类型为字符串。 当我传递参数给它,我得到的消息是Native methods do not specify a body
这里是代码...
package com.letme.test;
public class Eagleye_parser {
String n = "E48A7 F7759 65EA7";
public Eagleye_parser() {}
static {
System.loadLibrary("Eagleye_parser");
}
public native String eagleye_fmu(n);// here it is giving msg : Native methods do not specify a body
}