使用 ws-xmlrpc 的 XMLRPC 响应
有人有使用 ws-xmlrpc
解析复杂响应类型的经验吗?
当我请求 Array
的键时,Service
返回一个 HashMap
,其值之一是 Array
HashMap
,Java 只是返回 java.lang.Object
。
如何访问Array
的内容?
有什么想法吗?
Anyone have experience parsing complex response types using ws-xmlrpc
?
The Service
returns a HashMap
with one of the values an Array
, when I request the key of the Array
from the HashMap
, Java just returns java.lang.Object
.
How do I access the contents of the Array
?
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须将默认的 java 对象转换为 HashMap,然后访问它。
You have to cast the default java Object to HashMap and then access it.