我正在尝试使用Jacob库来访问com对象。
现在com对象接受了一个引用数组,我怎样才能在Java中传递它。
我的示例代码
String[] temp = new String[]{};
Dispatch.call(ssrpmProfile, "GetAdminDefinedQuestionsList", "English", temp);
System.out.println("UserData="+temp.length);
原始代码
Dim AdminQuestionArray
Profile.GetAdminDefinedQuestionsList "English",AdminQuestionArray
获得
在ASP代码中我得到10个问题,在Java中,数组的大小为0,数组中的值为null。
我也试图分配数组的大小,但我仍然没有得到列表。
其他有效的功能
我需要的是
有人可以帮我解决这个问题吗。