我实际上正在尝试打开一个库。所以(我用 c++ 做到了(用 JNA 我的问题是当有静态变量时我无法打开库。但是我必须在我的库中使用 un singleton,所以我正在寻找为什么静态变量不能与 JNA 一起使用来证明它是一个小库
有 .h 文件:
#ifndef UNTITLED1_LIBRARY_H
#define UNTITLED1_LIBRARY_H
#include <iostream>
class library {
private:
static char* h;
public:
int hello();
};
extern "C" int hello(){
library lib;
return lib.hello();
}
#endif
然后是我的.cpp文件:
#include "library.h"
#include "ecrire.h"
#include <iostream>
int library::hello() {
h = (char*)"hello world";
std::cout<<h<<std::endl;
return 45;
}
然后是我的 Java 类和接口
public class Westgard {
static {
System.setProperty("jna.library.path","../logic/resources/calculator");
}
public static void main(String[] args) {
// TODO Auto-generated method stub
int maj = InterfaceLibWestgard.INSTANCE.hello();
System.out.println(maj);
}
}
import com.sun.jna.Library;
import com.sun.jna.Native;
public interface InterfaceLibWestgard extends Library {
int hello();
static InterfaceLibWestgard INSTANCE = (InterfaceLibWestgard)
Native.loadLibrary("../logic/resources/calculator/libuntitled1.so",
InterfaceLibWestgard.class);
}
因此,如果我尝试这样做,它将无法正常工作,但是当从 .h 中删除静态时,它起作用了,没有人知道为什么我一直在寻找 4-5 小时仍然不知道为什么......
这是我的问题日志:
Exception in thread "main" java.lang.UnsatisfiedLinkError: Unable to load
library '../logic/resources/calculator/libuntitled1.so': Native library
(linux-x86-64/../logic/resources/calculator/libuntitled1.so) not found in
resource path ([file:/opt/java/jdk1.8.0_151/jre/lib/resources.jar,
您已经声明library::h
但尚未定义它。您需要添加
char* library::h = 0;
在您的 CPP 文件中。
据推测,库要么编译失败,要么正在编译,但期望在另一个库中定义这个缺失的符号。
您可以使用Native.load()
而不是Native.loadLibrary()
。
检查下面的代码,
public interface MyLibrary extends Library {
int myMethod();
}
static {
MyLibrary lib = (MyLibrary)Native.load("untitled1" , MyLibrary.class);
}
您可以在资源位置添加文件,并以上述方式轻松加载它。您应该排除"lib"前缀和".so"文件类型。在您的情况下,
文件名 ="无标题1">
使用 JNA 访问本机动态库