传统做法
1. 编写包含本地方法的Java类(Eclipse)
package test;
public class Example {
public native void set(String info);
public native String get();
}
2. 生成javah文件(Eclipse)
(1)点击eclipse工具栏外部工具按钮,打开配置外部工具;
(2)选中program右键点击添加;
(3)配置如下信息后点击run,生成的test_Example.h文件在项目的jni目录下。
在name框里输入命令的名字:javah
在location框里输入javah.exe的绝对路径: D:\jdk1.8\bin\javah.exe
在Working Directory框里输入:${project_loc}
在Arguments框里输入: -v-classpath "${project_loc}/bin" -d "${project_loc}/jni"-jni ${java_type_name}
3. 创建dll项目(Visual Studio)
(1)vs下新建DLL项目,将test_Example.h和jni.h(包含JAVA_HOME/include/jni.h和JAVA_HOME/include/win32/jni_md.h)添加进工程。
(2)新建dlltest.cpp实现test_Example.h的C++函数
#include <iostream>
#include "opencv2/highgui/highgui.hpp"
#include "test_Example.h"
std::string s =