从 SD 卡获取 xml 文件到 Android 应用程序?

发布于 2024-11-30 16:50:31 字数 75 浏览 2 评论 0原文

我需要将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

温折酒 2024-12-07 16:50:31

只需对 SD 卡上的 xml 文件使用 java file 命令即可。

File file=new File("/mnt/sdcard/example.xml");

使用 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.

File file=new File("/mnt/sdcard/example.xml");

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.

辞别 2024-12-07 16:50:31

它们只是您开发时 Android 项目中的文件夹。当应用程序编译时,srcres 中的所有内容都将转换为二进制代码,并打包在一个 apk 中。因此,我认为您的设备中不会有 res 文件夹或类似的内容。

They are just folders in an Android project when you develop. When the app is compiled, everything in src and res is turned into binary code, and packed in one apk. Therefore I don't think that you will have res folder or anything like that in the device.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文