获取 stringXmlContent 并写入然后保存到存储在 android sdcard 中的 .xml 文件中怎么可能?
我正在资源文件夹中实现读取和写入 xml。读取没问题,如何修改此 xml 文件另存为 sdcard:
EditText myXmlContent = (EditText)findViewById(R.id.my_xml);
String stringXmlContent;
try {
stringXmlContent = getEventsFromAnXML(this);
myXmlContent.setText(stringXmlContent);
} catch (XmlPullParserException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
我正在获取 stringXmlContent。如何将 stringXmlContent 转换为保存在 sdcard 中的 xml 文件?
I am implementing read and write xml in resource folder. Reading is ok, how can I modify this xml file save as sdcard:
EditText myXmlContent = (EditText)findViewById(R.id.my_xml);
String stringXmlContent;
try {
stringXmlContent = getEventsFromAnXML(this);
myXmlContent.setText(stringXmlContent);
} catch (XmlPullParserException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
I am getting stringXmlContent. How can stringXmlContent be converted in to an xml file saved in sdcard?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不使用 XMLParse 或 DOM
Why you don't use XMLParse or DOM