在 XMLRPC 结果中使用 HashMap
我是 Android 开发新手,我尝试使用 XMLRPC 在 RESULT 中接收 HashMap,但每次应用程序崩溃时,这是我的代码,请建议我:
Object RESULT = XMLRPCClient.callEx(methodname,new Object[] {params});
Map FRESULT= (Map) RESULT;
I am new in Android development, and I am trying to receive a HashMap in RESULT by using XMLRPC but every time it's crash the application, this is my code please advice me :
Object RESULT = XMLRPCClient.callEx(methodname,new Object[] {params});
Map FRESULT= (Map) RESULT;
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我也一直在处理这个问题,并设法以这种方式获取值:
我确信这是一团糟,我自己是 Java 菜鸟,但它对我有用。希望它有帮助:)
I have been dealing with this also and managed to get the values this way:
I'm sure it's a mess, I'm noob in Java myself, but it worked for me. Hope it helps :)
现在应用程序在实现后和平地传递了这个:
在我的 XmlRpcConnect 类中进行了一些更改:
但是当尝试提取值时它再次崩溃,任何建议:
Now the Application pass this peacefully after implementing :
with some changes in my XmlRpcConnect Class:
but when trying to extract the values it's crash again , any advice :