gpt4 book ai didi

java - 通过 JNA 在 Borland DLL 中查找函数时出错

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:16:31 25 4
gpt4 key购买 nike

这是我的 DLLService 的运行示例:

import com.sun.jna.Native;
import com.sun.jna.win32.StdCallLibrary;

public class DLLService {

public DLLService() throws Exception {
System.out.println("version = " + version() + "\n");
testEvaluate();
}

public void testEvaluate() {
System.out.println(this.loadFile("file", 1));
int[] barre = new int[] {0, 1, 2, 3, 4};
int[] result = new int[]{};
evaluateParty(barre.length, barre, result, 1);
System.out.println(result);
}

public int version() {
return GDLL.INSTANCE.LireNoVersion();
}

public int loadFile(String tslName, int pdwNoSess) {
return GDLL.INSTANCE.ChargerFichier();
}



public interface GDLL extends StdCallLibrary {
GDLL INSTANCE = (GDLL) Native.loadLibrary("tsr32_mini", GDLL.class);

int LireNoVersion();
int ChargerFichier();
}
}

函数 version() 没有问题,但 loadFile(...) 没有问题,我有异常(exception):

Exception in thread "main" java.lang.UnsatisfiedLinkError: Error looking up function 'EvaluerPartie':

在 com.sun.jna.Function.(Function.java:212) 在 com.sun.jna.NativeLibrary.getFunction(NativeLibrary.java:541) 在 com.sun.jna.NativeLibrary.getFunction(NativeLibrary.java:518) 在 com.sun.jna.NativeLibrary.getFunction(NativeLibrary.java:504) 在 com.sun.jna.Library$Handler.invoke(Library.java:220) 在 com.sun.proxy.$Proxy0.EvaluerPartie(未知来源)位于 DLLService.evaluateParty(DLLService.java:29) 在 DLLService.testEvaluate(DLLService.java:16) 在 DLLService.(DLLService.java:9) 在 ProblemsIsolator.main(ProblemsIsolator.java:53)

我已经进行了搜索,但没有找到有效的方法(更改类型、参数、名称……)。下面是函数 l 的原型(prototype):DWORD ChargerFichier (LPSTR chNom, DWORD *pdwNoSess)

编辑:同样的错误,即使在使用名称映射器之后也是如此;它仅适用于 LireVersion :

public void testFunctionMapper() throws Exception {
FunctionMapper mapper = StdCallLibrary.FUNCTION_MAPPER;
NativeLibrary lib = NativeLibrary.getInstance("tsr32_mini");

Method[] methods = {
GDLL.class.getMethod("LireNoVersion",
new Class[] { String.class, int.class }),
GDLL.class.getMethod("ChargerFichier",
new Class[] { String.class, int.class }),
};

for (int i=0;i < methods.length;i++) {
String name = mapper.getFunctionName(lib, methods[i]);
lib.getFunction(name, StdCallLibrary.STDCALL_CONVENTION).getName();
}
}

此外,依赖 worker 向我展示了很好的方法。

最佳答案

因为它似乎在该链接中有效:How do I get a java JNA call to a DLL to get data returned in parameters? ,我可以看到您对 ChargerFichier 的定义缺少参数。

也许定义应该是这样的:

int ChargerFichier(PointerByReference chNom, IntByReference pdwNoSess);

也许这个链接也能帮到你:http://www.viaboxx.de/code/java-interoperation-with-a-native-dll-using-jna/

关于java - 通过 JNA 在 Borland DLL 中查找函数时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34593011/

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