java程序写的没有太大难度:public class HelloJNI { /** * 走向内力的第一步 * @param args */ static{ System.loadLibrary("JNItest"); } public static void main(String[] args) { new HelloJNI().sayHello(); //System.out.println(System.getProperty("java.library.path")); } public native void sayHello();}主要问题 Read More