jstring不起作用

时间:2014-03-19 10:28:49

标签: android eclipse android-ndk java-native-interface native

我在HelloWorld.c中执行此代码

#include "com_testndk_HelloWorld.h"

JNIEXPORT jstring JNICALL Java_com_testndk_HelloWorld_messageFromNativeCode (JNIEnv * env, jobject jObj)

{
return (*env)->NewStringUTF(env, "Hello World!");
}

它显示JNIEXPORT jstring上的错误,当我编译ndk时,它会显示我的错误 enter image description here

1 个答案:

答案 0 :(得分:3)

您需要加入<jni.h>