如何将来自.NET Web服务的DataSet绑定到android GridView?
我正在调用一个返回数据集的.net webservice,那么我如何从服务读取数据集并将其绑定到android GridView?
我收到的 Web 服务响应如下:
SoapObject obj=(SoapObject)response.getResponse();
在“obj”中,我正在从 .NET Web 服务获取数据集,所以请告诉我如何将数据集读取到 android GridView 中?
谢谢, 唠叨。
I'm calling a .net webservice which returns dataset, so how can i read dataset from service and bind it to android GridView?
I'm getting web service response like:
SoapObject obj=(SoapObject)response.getResponse();
here in "obj" 'm getting DataSet from .NET web service, so please tell me how can i read dataset into android GridView?
Thanks,
nag.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您不应使用特定于 .NET 框架的 DataSet 类型。
Web 服务最佳实践涉及使用普通旧类对象 (POCO)
您可以阅读更多关于 http://www.hanselman.com/blog/ReturningDataSetsFromWebServicesIsTheSpawnOfSatanAndRepresentsAllThatIsTrulyEvilInTheWorld.aspx
要快速修复它,您可以将数据集映射到平面结构中,但我真诚地建议您停止暴露 .NET数据集到其他世界
You should not use DataSet types which are specific to the .NET framework.
Web Services best practices involve the usage of Plain Old Class Object (POCO)
You can read more on http://www.hanselman.com/blog/ReturningDataSetsFromWebServicesIsTheSpawnOfSatanAndRepresentsAllThatIsTrulyEvilInTheWorld.aspx
To quick fix it, you could map your dataset into a flat structure, but i sincerely advice you to stop exposing .NET dataset to other worlds