1

我在我使用的应用程序 的网页http://api.androidhive.info/music/music.xml上有一个 xml 文件

static final String URL = "http://api.androidhive.info/music/music.xml";
String xml = parser.getXmlFromUrl(URL);

工作正常,但知道我已将此文件放在我的 Android 资源文件夹中。R.drawble.music.xml那么如何从像这样的 android drawable 文件夹而不是网页中 获取我的文件。http://api.androidhive.info/music/music.xml

4

1 回答 1

0

将xml放入/res/raw文件夹。

然后使用:

InputStream is=getResources().openRawResource(R.raw.my_xml);

然后使用这个解析器XML PULL PARSER

XmlPullParser xpp=XmlPullParserFactory.newInstance().newPullParser();
xpp.setInput(is,"your-encoding");

谢谢。

于 2013-01-01T12:30:08.580 回答