-1
我在內部存儲中有大量的* .xml文件。我沒有自己創建這些文件,但我需要與他們合作。它們的構成就像這樣:(讀取和)從內部存儲解析XML文件
<?xml version="1.0" encoding="utf-16"?>
<ControlFrame xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<LandCode>31</LandCode>
<LandName>Australia</LandName>
<strFormat>Format35to45</strFormat>
<bUseOverlay>true</bUseOverlay>
...
</ControlFrame>
用戶選擇從列表中*.xml
文件中的一個,和我產生正確的*.xml
下一個File
對象,我需要查詢*.xml
文件屬性如LandCode
或bUseOverlay
。
我已經嘗試了一切,但我無法讓它在Jellybean 4.3上工作。
什麼是我最好的方法,我該如何實現它?