我今天刚刚尝试使用java来学习java中的本机方法。我成功加载了Native.dll
文件,但在方法调用中遇到问题,我也无法弄清楚发生了什么错误。
我的代码段是:
NativeTest.java
package javaapplication2;
import java.io.File;
import java.util.Scanner;
/**
*
* @author Chirag
*/
public class NativeTest {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("Loading Library nativeLib");
try {
Native n = new Native();
System.out.println("Loading success");
System.out.print("Enter a number to get cube: ");
int x = sc.nextInt();
System.out.println(x + " * " + x + " * " + x + " = " + n.cubecal(x));
} catch (Exception e) {
System.out.println("Error loading native library");
e.printStackTrace();
}
}
}
class Native {
static {
System.setProperty("java.library.path", new File("").getAbsolutePath());
// try {
// Field fieldSysPath = ClassLoader.class.getDeclaredField("sys_paths");
// fieldSysPath.setAccessible(true);
// fieldSysPath.set(null, null);
// } catch (Exception e) {
// }
String arch = System.getProperty("sun.cpu.isalist");
if (arch.trim().equalsIgnoreCase("amd64")) {
System.loadLibrary("Native");
} else {
System.loadLibrary("Native");
}
}
public native int cubecal(int x);
}
javac NativeTest.java
并按header
javah Native
文件
Native.h
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class Native */
#ifndef _Included_Native
#define _Included_Native
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: Native
* Method: cubecal
* Signature: (I)I
*/
JNIEXPORT jint JNICALL Java_Native_cubecal
(JNIEnv *, jobject, jint);
#ifdef __cplusplus
}
#endif
#endif
还有一个剪辑
Native.cpp
#include "stdafx.h"
#include "Native.h"
JNIEXPORT jint JNICALL Java_Native_cubecal
(JNIEnv *env, jobject obj, jint val){
return val * val * val;
}
在所有这些剪辑之后我执行此代码后出现此错误
Loading Library Native
Loading success
Enter a number to get cube: 4
Exception in thread "main" java.lang.UnsatisfiedLinkError: javaapplication2.Native.cubecal(I)I
at javaapplication2.Native.cubecal(Native Method)
at javaapplication2.NativeTest.main(NativeTest.java:28)
C:\Users\Chirag\AppData\Local\NetBeans\Cache\8.2\executor-snippets\run.xml:53: Java returned: 1
我知道这只能通过java代码轻松实现,但我正在尝试本机方法,这样我也可以在其他java项目中使用C ++的好处。
注意:我在
C:\Program Files\Java\jdk1.8.0_144\include
和C:\Program Files\Java\jdk1.8.0_144\include\win32
之后的Visual Studio 2012中添加了项目属性的所有亲戚路径
我也读过这些文章Working with java's native method和Java programming with JNI,但总是出现此错误。
请帮忙,并解释一下这个例外情况。
谢谢:)
答案 0 :(得分:1)
是的!经过太多测试后我终于得到了答案。完整的代码在 包 中,上面的代码片段中的问题是我没有考虑创建头文件的包..(呵呵......我的错误。抱歉。为此)
更新的代码剪辑是:
NativeTest.java
package javaapplication2;
import java.io.File;
import java.util.Scanner;
/**
*
* @author Chirag
*/
public class NativeTest {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("Loading library NativeCube");
try {
NativeCube n = new NativeCube();
System.out.println("Loading Library NativeCube succeeded");
System.out.print("Enter a number to get cube: ");
int x = sc.nextInt();
System.out.println(x + " * " + x + " * " + x + " = " + n.cubecal(x));
} catch (Throwable e) {
System.err.println("Error loading library nativeLib: " + e);
e.printStackTrace();
}
}
}
class NativeCube {
public NativeCube() {
System.setProperty("java.library.path", new File("").getAbsolutePath());
System.out.println("Pathes: " + System.getProperty("java.library.path"));
String arch = System.getProperty("sun.cpu.isalist");
if (arch.trim().equalsIgnoreCase("amd64")) {
System.loadLibrary("NativeCube");
} else {
System.loadLibrary("NativeCube_x86");
}
}
public native int cubecal(int x);
}
javah javaapplication2.NativeCube
javaapplication2_NativeCube.h
/* DO NOT EDIT THIS FILE - it is machine generated */
#include <jni.h>
/* Header for class javaapplication2_NativeCube */
#ifndef _Included_javaapplication2_NativeCube
#define _Included_javaapplication2_NativeCube
#ifdef __cplusplus
extern "C" {
#endif
/*
* Class: javaapplication2_NativeCube
* Method: cubecal
* Signature: (I)I
*/
JNIEXPORT jint JNICALL Java_javaapplication2_NativeCube_cubecal
(JNIEnv *, jobject, jint);
#ifdef __cplusplus
}
#endif
#endif
Main.cpp的
#include "javaapplication2_NativeCube.h"
JNIEXPORT jint JNICALL Java_javaapplication2_NativeCube_cubecal
(JNIEnv *env, jobject obj, jint val){
return val * val * val;
}
并且程序的输出是
Loading library NativeCube
Pathes: C:\Users\Chirag\Documents\NetBeansProjects\JavaApplication2
Loading Library NativeCube succeeded
Enter a number to get cube: 12
12 * 12 * 12 = 1728
学到了一个很好的章节,关于不要跳过包名来创建头文件。