我正在尝试使用swig和cmake将c ++库包装为java。假设c ++源代码包含在example.cpp中。我想将其构建到example.dll库和example.jar文件中,以便可以将example.jar添加到Java库路径并编写如下代码:
public class Test{
static{
System.loadLibrary("example");
}
public static void main(String[] args){
//call to methods in example.dll here
}
}
谁能告诉我该怎么做。 预先感谢!