WEB开发网
开发学院WEB开发Jsp Java核心代码例程之:JNIExample.java 阅读

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

 2008-01-05 08:38:24 来源:WEB开发网   
核心提示:/** * This class is a simple example that uses a native function * @author Renga **/public class JNIExample {static {System.loadLibrary( "JNI" );}/**

/**
 * 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() );
}

}

Tags:Java 核心 代码

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接