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

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

   
#include "JNIExample.h"

/**
* This method just returns the string "Hello World from JNI!" to the caller
* Parameters:

* env - JNI Environment pointer
* obj - Invoking object
* Returns:
* A string
**/
extern "C" JNIEXPORT jstring JNICALL Java_JNIExample_sayHello
( JNIEnv *env, jobject obj ) {
return env->NewStringUTF( "Hello World from JNI!" );
}

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