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

时间:2011-08-23 09:06:30

标签: android xml save sd-card

我需要在res / values中将sdcard中的xml文件保存到我的android应用程序中。我怎样才能做到这一点?任何人都可以帮助我吗?

2 个答案:

答案 0 :(得分:2)

只需在sdcard上使用java file命令获取xml文件。

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

使用DOM或SAX解析器,您可以从中为您的应用程序解析数据(信息)。

日Thnx。

编辑:parsing local xml file using Sax in androidRead XML Resources in Android, using XmlResourceParser: XML parsing interface HereHere请查看这些教程。

答案 1 :(得分:0)

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