第一步
例如
public native void nativeHelloWorld();
static{
System
}
}
第二步
先用javac編譯NativeHello
第三步
命令如下
第四步:編寫C程序(此處假定文件名為NativeTest
#include
#include
#include
void Nativehello_nativeHelloWorld(struct HNativeHello *this){
}/
*函數名Nativehello_nativeHelloWorld不能任意指定
第五步
將nativeTest
最後講一下測試的方法
class UseNative{
public static void main(String []args){
NativeHello nh=new NativeHello();
nh
}
}
From:http://tw.wingwit.com/Article/program/Java/JSP/201311/19605.html