每次运行程序时,我都会收到java.lang.UnsatisfiedLinkError错误。我有一个本机,一个包装器,以及通过包装器调用本机的程序。
主文件
#ifndef __MAIN_H__
#define __MAIN_H__
#include <windows.h>
#ifdef BUILD_DLL
#define DLL_EXPORT __declspec(dllexport)
#else
#define DLL_EXPORT __declspec(dllimport)
#endif
#include<jni.h>
#include<iostream>
using namespace std;
extern "C"
{
JNIEXPORT void JNICALL native_MessageBox(string text, string title);
}
#endif
主文件
#include "main.h"
#include<windows.h>
#include<iostream>
using namespace std;
JNIEXPORT void JNICALL MsgBox(string text, string title)
{
MessageBox(NULL, text.c_str(), title.c_str(), MB_OK);
}
extern "C" DLL_EXPORT BOOL APIENTRY DllMain(HINSTANCE hinstDLL, DWORD fdwReason,
LPVOID lpvReserved)
{
switch (fdwReason)
{
case DLL_PROCESS_ATTACH:
break;
case DLL_PROCESS_DETACH:
break;
case DLL_THREAD_ATTACH:
break;
case DLL_THREAD_DETACH:
break;
}
return TRUE;
}
包装器.java
public class Wrapper
{
private static File nativeFile = null;
static
{
//ArchitectureReader and OSReader are classes I made to read the CPU
//bits and the OS
ArchitectureType archType = ArchitectureReader.getArcitecture();
OSType osType = OSReader.getOS();
String filename = "C:/native-";
if (osType == OSType.Windows)
{
if (archType == ArchitectureType.BITS_32)
filename += "win32";
else if (archType == ArchitectureType.BITS_64)
filename += "win64";
else
System.exit(1);
}
else
System.exit(1);
nativeFile = new File(filename + ".dll");
if (!nativeFile.exists())
System.exit(1);
System.load(filename); //This is where the Exception is thrown
}
private static native void native_MessageBox(String text, String title);
public static void MesageBox(String text, String title)
{
native_MessageBox(text, title);
}
public static String getNativePath()
{
return nativeFile.getAbsolutePath();
}
}
主.Java
public class Main
{
public static void main(String[] args)
{
Wrapper.MessageBox("Testing JNI", "JNI");
}
}
本机是使用 MinGW 64 位构建的。无论如何,我不明白为什么会出现错误。帮助?????