调用 xml 到 Android
我有来自本地主机“http:localhost:810/Service1.svc/leb/GetAllCustomers”的 xml 格式的记录列表,
我可以将其调用到 android 并将其列出在 Textview 或 Spinner 或 EditTextView 或中的任何控件中安卓?
I have list of records in xml format from my local host "http:localhost:810/Service1.svc/leb/GetAllCustomers"
Can I call this to android and list it in Textview or Spinner or in EditTextView or in any of the controls in android?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您应该使用 Android 中的 SAX 解析或 Dom Parse 解析此 xml 文件,并根据您的要求在数组/列表/地图中收集日期,我在这里发布了一些链接,以便您从那里获取更多信息并尽快获取您的信息。
http://www.androidpeople.com/android-xml-parsing-tutorial -using-saxparser
http://www.androidpeople.com/android-xml-parsing-tutorial-%E2%80%93-using-domparser
我希望这对您非常有帮助。
You should parse this xml file using SAX parse or Dom Parse in android and collect date in arrays/list/map according to your requirement here i am post some link to you get more information form there and get your ASAP.
http://www.androidpeople.com/android-xml-parsing-tutorial-using-saxparser
http://www.androidpeople.com/android-xml-parsing-tutorial-%E2%80%93-using-domparser
I hope this is very helpful to you.
这里有一些链接供您参考。
1) 多线程提高性能
帮助您了解如何通过 AsyncTask 下载文件(示例显示下载图像)。
2) 在 Android 中使用 XML
帮助您解析你的xml。检查这些。祝你好运!
Some links here for you.
1) Multithreading for Performance
to help you understand, how to download a file (example shows downloading an image) via AsyncTask.
2) Working with XML in Android
to help you parse your xml. Check these out. Good luck!
是的,你可以这样做。
使用以 URL 作为参数的 Intent。
在 URL 中,您可以提及源的位置/URI。
然后,您可以将其解析为字符串并存储它。
稍后,使用 ArrayAdapter 进行填充。
如果这就是你想要做的,我可以给你代码。
Yes you can do that.
Use Intent which takes URL as an argument.
In the URL you can mention the location/URI of your source.
Then, you can parse it to a string and store it.
Later, use ArrayAdapter to populate.
I can get you code if this is what you are trying to do.