JNIEXPORT int JNICALL Java_com_ndkfoo_test_GL2JNILib_step2(JNIEnv * env, jobject obj, jstring filePath)
{
const jbyte *str;
str = (*env)->GetStringUTFChars(env, filePath, NULL);
char* fullPath=str.append("FileName.txt"); // error
char* fullPath2=str+"fileName.txt" // error
}
有人可以指出创建定义fullPathName的正确语法吗?我认为传入jstring是正确的,但是我不知道如何转换为
fopen()
的提取路径名。 最佳答案
尝试使用此函数将jstring转换为std:string:
void GetJStringContent(JNIEnv *AEnv, jstring AStr, std::string &ARes) {
if (!AStr) {
ARes.clear();
return;
}
const char *s = AEnv->GetStringUTFChars(AStr,NULL);
ARes=s;
AEnv->ReleaseStringUTFChars(AStr,s);
}
您的任务的解决方案:
JNIEXPORT int JNICALL Java_com_ndkfoo_test_GL2JNILib_step2(JNIEnv * env, jobject obj, jstring filePath) {
std::string str;
GetJStringContent(env,filePath,str);
const char *fullPath = str.append("FileName.txt").c_str();
}