我有以下的java代码
public class JNIWrapper {
static{
System.loadLibrary("JNIDemo");
}
public native String get_error_string(int error_code);
public native int start(Param_s params);
public native int cancel(String cookies);
public native int get_file_name(String cookies,String fileName);
public native int get_status(String cookies,int percentage_complete);
} 下面是我生成的.H文件
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class demo_JNIWrapper */
#ifndef _Included_demo_JNIWrapper
#define _Included_demo_JNIWrapper
#ifdef __cplusplus
extern "C" {
#endif
JNIEXPORT jstring JNICALL Java_demo_JNIWrapper_get_1error_1string
(JNIEnv *, jobject, jint);
JNIEXPORT jint JNICALL Java_demo_JNIWrapper_1start
(JNIEnv *, jobject, jobject);
JNIEXPORT jint JNICALL Java_demo_JNIWrapper_cancel
(JNIEnv *, jobject, jstring);
JNIEXPORT jint JNICALL Java_demo_JNIWrapper_getfile_1name
(JNIEnv *, jobject, jstring, jstring);
JNIEXPORT jint JNICALL Java_demo_JNIWrapper_get_1status
(JNIEnv *, jobject, jstring, jint);
#ifdef __cplusplus
}
#endif
#endif
让我们说get_status,我希望将percentage_complete作为out参数并返回说0,我将返回百分比_complete(因为它在out参数中)返回值。
任何帮助都会受到高度赞赏,并且非常有帮助
注意:我不能使用struct,即:我可以在结构中封装percentage_complete和return输出并返回该结构)
答案 0 :(得分:0)
你必须归还两件事:
成功时返回Integer
个对象,失败时返回null
。变化
public native int get_status(String cookies,int percentage_complete);
到
public native Integer get_status(String cookies);
这将更改生成的头文件,您必须对C代码进行相应的更改。