Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
请帮我解决以下问题。在我的 android 资产文件夹中,我有一个名为 xml 的文件,frames.xml我也有一个类,它像 DOM 一样解析这个文件。
frames.xml
DocumentBuilder db = dbf.newDocumentBuilder(); dom = db.parse(fileName);
所以我的问题是如何使用这个 xml 解析器从 assets 文件夹中读取该文件?提前谢谢你。
尝试:
DocumentBuilder db = dbf.newDocumentBuilder(); dom = db.parse(context.getAssets().open(filename));