gpt4 book ai didi

java - jni 字符串转 *char 和 java.lang.UnsatisfiedLinkError :

转载 作者:行者123 更新时间:2023-11-28 07:17:51 25 4
gpt4 key购买 nike

我正在尝试使用 JNI 运行简单的程序,在我尝试使用字符串之前一切都运行良好:

你好.java:

public class hello {
public native String getLine(String name) ;
public static void main (String args[]) {
String str = "Pawel" ;
hello h = new hello () ;
System.out.println(h.getLine(str)) ;
}
static {
System.loadLibrary ( "hello" ) ;
}
}

你好.c:

#include<stdio.h>
#include<jni.h>
#include "hello.h"

JNIEXPORT jstring JNICALL
Java_Prompt_getLine(JNIEnv *env, jobject obj, jstring prompt)
{
char buf[128];
const jbyte *str;
str = (*env)->GetStringUTFChars(env, prompt, NULL);
if (str == NULL) {
return NULL;
}
printf("%s", str);
(*env)->ReleaseStringUTFChars(env, prompt, str);
scanf("%s", buf);
return (*env)->NewStringUTF(env, buf);
}

你好.h:

/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class hello */

#ifndef _Included_hello
#define _Included_hello
#ifdef __cplusplus
extern "C" {
#endif

JNIEXPORT jstring JNICALL Java_hello_getLine
(JNIEnv *, jobject, jstring);

#ifdef __cplusplus
}
#endif
#endif

我正在编译:

gcc -fPIC -I /usr/lib/jvm/java-7-openjdk-amd64/include -I /usr/lib/jvm/java-7-openjdk-amd64/include/linux -shared -o libhello.so hello.c

并运行:

java -Djava.library.path=. hello

输出:

Exception in thread "main" java.lang.UnsatisfiedLinkError: hello.getLine(Ljava/lang/String;)Ljava/lang/String;
at hello.getLine(Native Method)
at hello.main(hello.java:9) //it points to native function call

怎么了?

最佳答案

hello.c 中的 Java_Prompt_getLine 函数重命名为 Java_hello_getLine

关于java - jni 字符串转 *char 和 java.lang.UnsatisfiedLinkError :,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19942873/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com