是不是函数声明有什么不同啊?
procedure test(s:pchar);stdcall;
begin
        showmessage(s);
end;
在testdll.java中
public native static void test(String s);
 
  public static void main(String[] args)
  {
    testdll testme=new testdll();
    testme.test("aaaa");
  }
好像找不到