Java核心代码例程之:JNIExample.java

发表于:2007-06-22来源:作者:点击数: 标签:

   
/**
 * This class is a simple example that uses a native function
 * @author Renga
 **/
public class JNIExample {

static {
System.loadLibrary( "JNI" );
}

/**
 * Native method declaration. Just returns the string "Hello World from JNI!"
 * @return A string
 **/
public native String sayHello();

/**
 * Main method
 * @param args Command-line arguments
 **/
public static void main( String[] args ) {

// Create a new JNIExample object
JNIExample temp = new JNIExample();

// Invoke the native method
System.out.println( temp.sayHello() );
}

}

原文转自:http://www.ltesting.net