函数映射Delphi DLL与Java(JNA)

时间:2015-06-19 19:24:05

标签: java delphi dll jna

我在使用JNA Java在Delphi中使用DLL的两个函数时遇到了问题。在测试软件(Delphi,随DLL提供)中,我有这个功能(在测试软件中完美运行):

function abrir_conexao (const modelo : **byte**; const host : **pansichar**; const porta : **word**; const senha : **pansichar**) : integer; stdcall external 'comunicacao.dll';

function enviar_comando (const comando : **byte**; var tamanho : **byte**; var dados : **pbyte**) : integer; stdcall external 'comunicacao.dll';

我正在尝试在Java(JNA)中实现这些功能。我通常会加载dll,但是,我认为问题在于使用正确的原始变量:

public int abrir_conexao (**byte** modelo, **String** host, **short** porta, **String** senha);

public int enviar_comando(**byte** comando, **byte** tamanho, **byte[]** dados);

但它不起作用。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:1)

对于以下本机功能:

function abrir_conexao (const modelo : byte; const host : pansichar; const porta : word; const senha : pansichar) : integer; stdcall external 'comunicacao.dll';

function enviar_comando (const comando : byte; var tamanho : byte; var dados : pbyte) : integer; stdcall external 'comunicacao.dll';

JNA映射:

public interface MyLibrary extends StdCallLibrary {
    MyLibrary INSTANCE = (MyLibrary)Native.loadLibrary('comunicacao', MyLibrary.class);
    int abrir_conexo(byte modelo, String host, short port, String senha);
    int enviar_comando(byte comando, byte tamanho, byte[] dados);
}