B
blueidealer
Unregistered / Unconfirmed
GUEST, unregistred user!
在java中有
public class TestObj{
public String name;
public byte[] data;
}
public class main{
static { System.loadLibrary("mytest" }
public native static TestObj test(TestObj obj);//将java对象作为参数调用delphi的dll,同时返回的也是java对象
public static void main(String[] args) {
TestObj o1=new TestObj();
TestObj o2=Main.test(o1);
}
}
在delphi 的dll中如何获得参数传过去的 TestObj对象中的 data属性中的byte[]数据? 如何将delphi的byte array 写入返回TestObj对象的data属性中去?
public class TestObj{
public String name;
public byte[] data;
}
public class main{
static { System.loadLibrary("mytest" }
public native static TestObj test(TestObj obj);//将java对象作为参数调用delphi的dll,同时返回的也是java对象
public static void main(String[] args) {
TestObj o1=new TestObj();
TestObj o2=Main.test(o1);
}
}
在delphi 的dll中如何获得参数传过去的 TestObj对象中的 data属性中的byte[]数据? 如何将delphi的byte array 写入返回TestObj对象的data属性中去?