我正在开发一个Android应用程序,我想读取和编辑存储在设备内部存储器中的xml文件(该文件通过usb传输到设备到特定文件夹,而不是由应用程序创建为了这个目的,我使用Java的DOMxmlParser,但是当我想要保存xml文件的更新版本时遇到问题。我已经在我的PC上测试了我的编辑功能(作为一个简单的Java应用程序)并且它工作得很完美,但是当我在android应用程序中使用完全相同的代码但是xml文件没有发生变化而我没有错误。我也想要明确该文件是可访问的,因为我可以从应用程序内部打印其数据。请帮忙
以下是一些代码:
清单
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.tsiskos.training1" >
<uses-sdk android:minSdkVersion="11" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
android:maxSdkVersion="18" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/Theme.AppCompat.Light.DarkActionBar" >
<activity
android:name=".MyActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".DisplayMessageActivity"
android:label="@string/app_name"
android:parentActivityName=".MyActivity" >
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.example.tsiskos.training1.MyActivity" />
</activity>
<activity
android:name=".EditContact"
android:label="@string/title_activity_edit_contact" >
</activity>
</application>
XML编辑功能
public void editContact(String number,String oldName,String oldLimit,String newName,String newLimit) {
try {
DocumentBuilderFactory builderFactory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = builderFactory.newDocumentBuilder();
Document xmlDocument = builder.parse(new File(xmlPath));
NodeList numbers = xmlDocument.getElementsByTagName("number");
for (int i = 0; i < numbers.getLength(); i++) {
if (((Element) numbers.item(i)).getAttribute("id").equals(number)) {
Element currNumber = (Element) numbers.item(i);
NodeList childs = currNumber.getChildNodes();
for (int j = 0; j < childs.getLength(); j++) {
Node currElement = childs.item(j);
if (currElement.getNodeName().equals("contact")) {
NodeList currContact = currElement.getChildNodes();
for (int k = 0; k < currContact.getLength(); k++) {
Node currContactChild = currContact.item(k);
String currNode = currContactChild.getNodeName();
String currValue = currContactChild.getTextContent();
if (currNode.equals("name") && currValue.equals(oldName)) {
currContactChild.setTextContent(newName);
}
if (currNode.equals("limit") && currValue.equals(oldLimit)) {
currContactChild.setTextContent(newLimit);
}
}
}
}
}
}
TransformerFactory transformerFactory = TransformerFactory.newInstance();
Transformer transformer = transformerFactory.newTransformer();
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
DOMSource source = new DOMSource(xmlDocument);
StreamResult result = new StreamResult(new File(xmlPath));
transformer.transform(source, result);
return xmlDocument;
} catch (ParserConfigurationException e) {
e.printStackTrace();
} catch (SAXException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (TransformerConfigurationException e) {
e.printStackTrace();
} catch (TransformerException e) {
e.printStackTrace();
}
}
我确切知道的是,文件的读取和解析是成功的。 我是否会错过与Android文件系统相关的重要内容? 提前谢谢。
答案 0 :(得分:1)
显然问题出在清单文件中。我试图将结果写入一个字符串,然后写入一个文件,如Sanj评论的那样(调试提示:P),我得到了许可拒绝错误,这是我之前看不到的。 虽然我已经包含了写外部权限,但我找到了this post的答案 建议使用权限标记的不同位置。
那么诀窍是什么呢?
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
在清单文件结束之前。