我需要在res / values中将sdcard中的xml文件保存到我的android应用程序中。我怎样才能做到这一点?任何人都可以帮助我吗?
答案 0 :(得分:2)
只需在sdcard上使用java file命令获取xml文件。
File file=new File("/mnt/sdcard/example.xml");
使用DOM或SAX解析器,您可以从中为您的应用程序解析数据(信息)。
日Thnx。
编辑:parsing local xml file using Sax in android,Read XML Resources in Android, using XmlResourceParser: XML parsing interface 或Here或Here请查看这些教程。
答案 1 :(得分:0)
开发时,它们只是Android项目中的文件夹。编译应用程序时,src
和res
中的所有内容都会转换为二进制代码,并打包在一个apk中。因此,我认为您不会在设备中拥有res
文件夹或类似内容。