如何从assets文件夹读取到DOM xml解析器?

时间:2012-04-09 14:53:21

标签: android xml assets

请帮我解决以下问题。 在我的android资源文件夹中,我有一个名为frames.xml的xml文件。我还有一个像DOM一样解析这个文件的类。

        DocumentBuilder db = dbf.newDocumentBuilder();
        dom = db.parse(fileName);

所以我的问题是如何通过使用这个xml解析器从assets文件夹中读取该文件? 提前谢谢你。

1 个答案:

答案 0 :(得分:3)

尝试:

    DocumentBuilder db = dbf.newDocumentBuilder();
    dom = db.parse(context.getAssets().open(filename));