将关联数组(Hashmap)作为参数传递给 xml rpc

发布于 2024-10-16 21:57:25 字数 475 浏览 3 评论 0原文

我想从 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);

I want to XML-RPC from Java,I am facing problem while passing associative array(Hashmap) as parameter.Here is my code.

 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);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烟雨凡馨 2024-10-23 21:57:25

HashMap 需要包装在一个对象数组中:

Object result = client.execute("method name", new Object [] {map});

The HashMap needs to be wrapped in an object array:

Object result = client.execute("method name", new Object [] {map});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文