【发布时间】:2013-03-20 05:29:22
【问题描述】:
我是第一次尝试原生方法....
我从这个链接Click.... 进行了一个简单的编程。
nativetest.java
public class nativetest
{
static {
System.loadLibrary("nativetest");
}
public native String sayHello(String s);
public static void main(String[] argv)
{
String retval = null;
nativetest nt = new nativetest();
retval = nt.sayHello("Beavis");
System.out.println("Invocation returned " + retval);
}
}
javac nativetest.java
javah -jni nativetest
nativetest.h 文件已成功创建
nativetest.h
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class nativetest */
#ifndef _Included_nativetest
#define _Included_nativetest
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: nativetest
* Method: sayHello
* Signature: (Ljava/lang/String;)Ljava/lang/String;
*/
JNIEXPORT jstring JNICALL Java_nativetest_sayHello(JNIEnv *, jobject, jstring);
#ifdef __cplusplus
}
#endif
#endif
nativetest.c 代码
nativetest.c
include "nativetest.h" /*double quotes tells it to search current directory*/
JNIEXPORT jstring JNICALL Java_nativetest_sayHello (JNIEnv *env, jobject thisobject, jstring js)
{
return js;
}
gcc -I/usr/java/jdk1.7.0_13/include -I/usr/java/jdk1.7.0_13/include/linux -o nativetest.so -shared nativetest.c
已成功创建共享对象文件。
当我执行 nativetest 时,它显示以下错误
java -Djava.library.path=。本机测试
线程“主”java.lang.UnsatisfiedLinkError 中的异常:java.library.path 中没有 nativetest 在 java.lang.ClassLoader.loadLibrary(ClassLoader.java:1860)
在 java.lang.Runtime.loadLibrary0(Runtime.java:845)
在 java.lang.System.loadLibrary(System.java:1084)
在 nativetest.(nativetest.java:4)
提前谢谢....
【问题讨论】:
-
将
.添加到LD_LIBRARY_PATH? -
尝试将
nativetest.so重命名为libnativetest.so。 -
@lhuang Thanx 它正在工作
标签: java dll native-methods