我想从Java中获取XML-RPC,我在将关联数组(Hashmap)作为参数传递时遇到问题。这是我的代码。
XmlRpcClientConfigImpl config = new XmlRpcClientConfigImpl();
config.setServerURL(new URL(ServeUrl));
XmlRpcClient client = new XmlRpcClient();
client.setConfig(config);
Map map = new HashMap();
map.put(Parameter Name, Parameter Value);
map.put(Parameter Name , Parameter Value);
Object result = client.execute("method name", map);
答案 0 :(得分:5)
HashMap需要包装在一个对象数组中:
Object result = client.execute("method name", new Object [] {map});