从 SD 卡获取 xml 文件到 Android 应用程序?
我需要将 xml 文件从 sdcard 保存到我的 android 应用程序的 res/values 中。我该怎么做?有人可以帮助我吗?
I need to save a xml file from sdcard to my android app, in res/values. How can I do this? Can anyone help me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需对 SD 卡上的 xml 文件使用 java file 命令即可。
使用 DOM 或 SAX 解析器,您可以为您的应用程序解析其中的数据(信息)。
谢谢。
编辑:在android中使用Sax解析本地xml文件,< a href="http://android-er.blogspot.com/2010/04/read-xml-resources-in-android-using.html" rel="nofollow noreferrer">读取 XML 资源在Android中,使用XmlResourceParser:XML解析接口或此处 或 在这里看看这些教程。
just use the java file command for your xml file on sdcard.
and using DOM or SAX parser you can parse the data(information) from it for your application.
Thnx.
EDIT: parsing local xml file using Sax in android, Read XML Resources in Android, using XmlResourceParser: XML parsing interface or Here or Here Look at these tutorials.
它们只是您开发时 Android 项目中的文件夹。当应用程序编译时,
src
和res
中的所有内容都将转换为二进制代码,并打包在一个 apk 中。因此,我认为您的设备中不会有res
文件夹或类似的内容。They are just folders in an Android project when you develop. When the app is compiled, everything in
src
andres
is turned into binary code, and packed in one apk. Therefore I don't think that you will haveres
folder or anything like that in the device.