pro*_*eve 3 c java java-native-interface type-conversion
#include <stdio.h>
#include "Package_MyTester.h"
jstring Java_Package_MyTester_NMethod
(JNIEnv *env, jobject obj, jint first, jint second) {
jint result_i = first * second;
jstring result;
int x = 0;
for(x=0;x<5;x++) {
printf("%d",x);
}
return result;
}
Run Code Online (Sandbox Code Playgroud)
该程序将两个正整数相乘。结果必须在jstring中。有没有办法将jint转换为jstring?
您需要创建一个包含结果的C缓冲区(使用sprintf),然后返回NewStringUTF函数的结果:
jstring Java_Package_MyTester_NMethod
(JNIEnv *env, jobject obj, jint first, jint second) {
jint result_i = first * second;
char buf[64]; // assumed large enough to cope with result
sprintf(buf, "%d", result_i); // error checking omitted
return (*env)->NewStringUTF(env, buf);
}
Run Code Online (Sandbox Code Playgroud)
请参阅http://java.sun.com/docs/books/jni/html/objtypes.html的 §3.2.3