Get Strings used in Java from JNI(从 JNI 获取 Java 中使用的字符串)
问题描述
这是我用 JAVA 编写的代码的一部分,如您所见,这是一个名为 JC_VerificationCandidate
的类两个 String
成员 enrollmentID
和 seedIndex
.
Here is some part of my code that I have written in JAVA, As you can see this is a class called JC_VerificationCandidate
that have two String
members enrollmentID
and seedIndex
.
class JC_VerificationCandidate {
public JCDSM_VerificationCandidate( String enrollmentID, String seedIndex ) {
this.enrollmentID = enrollmentID;
this.seedIndex = seedIndex;
}
public String enrollmentID;
public String seedIndex;
}
这是我拥有本地方法的主类,我从那里调用了该本地方法.
Here is main class where I have native method and from where I called that native method.
public class DsmLibraryTest extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
JCDSM_VerificationCandidate verificationCandidate[] = {new JCDSM_VerificationCandidate( "tom", "anna" )};
dsm.JDSMVerify( 123456, "http:\www.test_url.com", bytes, verificationCandidate );
}
public native int JDSMVerify(
int someValue1,
String someValue2,
byte[] someValue3,
JC_VerificationCandidate jVerificationCandList[] );
}
如您所见,我使用一个对象创建数组并将其提供给我的函数.
As you can see I create array with one object and give it to my function.
JCDSM_VerificationCandidate verificationCandidate[] = {new JCDSM_VerificationCandidate( "tom", "anna" )};
JNI 代码
如何获取我从 java 应用程序设置并存储在 jVerificationCandList<中的两个字符串
enrollmentID
、eedIndex
/code> ?
JNIEXPORT jint JNICALL Java_com_Dsm_Test_DSM_JDSMVerify( JNIEnv* env, jobject thiz, jint jhDevice, jstring jurlID,
jbyteArray jInputInfo, jobjectArray jVerificationCandList ) {
}
推荐答案
以下代码应该允许您访问字段 enrollmentID.使用 JNI 字符串函数 读取/操作它们.
The following code should allow you to access the field enrollmentID. Use the JNI String functions to read/manipulate them.
// Load the class
jclass jclass_JCV = env->FindClass(env, "my.package.JC_VerificationCandidate");
jfieldID fid_enrollmentID = env->GetFieldID(env, jclass_JCV, "enrollmentID" , "Ljava/lang/String;");
// Access the first element in the jVerificationCandList array
jobject jc_v = env->GetObjectArrayElement(env, jVerificationCandList, 0);
// get reference to the string
jstring jstr = (jstring) env->GetObjectField(env, jc_v, enrollmentID);
// Convert jstring to native string
const char *nativeString = env->GetStringUTFChars(env, jstr, 0);
这篇关于从 JNI 获取 Java 中使用的字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:从 JNI 获取 Java 中使用的字符串


- 如何指定 CORS 的响应标头? 2022-01-01
- Eclipse 的最佳 XML 编辑器 2022-01-01
- 未找到/usr/local/lib 中的库 2022-01-01
- 获取数字的最后一位 2022-01-01
- 转换 ldap 日期 2022-01-01
- 在 Java 中,如何将 String 转换为 char 或将 char 转换 2022-01-01
- GC_FOR_ALLOC 是否更“严重"?在调查内存使用情况时? 2022-01-01
- 如何使 JFrame 背景和 JPanel 透明且仅显示图像 2022-01-01
- java.lang.IllegalStateException:Bean 名称“类别"的 BindingResult 和普通目标对象都不能用作请求属性 2022-01-01
- 将 Java Swing 桌面应用程序国际化的最佳实践是什么? 2022-01-01