获取 stringXmlContent 并写入然后保存到存储在 android sdcard 中的 .xml 文件中怎么可能?

发布于 2024-11-15 06:02:16 字数 538 浏览 2 评论 0原文

我正在资源文件夹中实现读取和写入 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

海螺姑娘 2024-11-22 06:02:16

为什么不使用 XMLParse 或 DOM

Why you don't use XMLParse or DOM

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文