HarmonyOS ohos.xml写好xml后怎么以文件形式存起来

// 1.基于Arraybuffer构造XmlSerializer对象
let arrayBuffer: ArrayBuffer = new ArrayBuffer(2048); // 创建一个2048字节的缓冲区
let thatSer: xml.XmlSerializer = new xml.XmlSerializer(arrayBuffer); // 基于Arraybuffer构造XmlSerializer对象

thatSer.setDeclaration(); // 写入xml的声明
thatSer.startElement(‘bookstore’); // 写入元素开始标记
thatSer.startElement(‘book’); // 嵌套元素开始标记
thatSer.setAttributes(‘category’, ‘COOKING’); // 写入属性及属性值
thatSer.startElement(‘title’);
thatSer.setAttributes(‘lang’, ‘en’);
thatSer.setText(‘Everyday’); // 写入标签值
thatSer.endElement(); // 写入结束标记
thatSer.startElement(‘author’);
thatSer.setText(‘Giada’);
thatSer.endElement();
thatSer.startElement(‘year’);
thatSer.setText(‘2005’);
thatSer.endElement();
thatSer.endElement();
thatSer.endElement();

怎么以文件的形式存起来?比如filename.xml

HarmonyOS
4天前
浏览
收藏 0
回答 1
待解决
回答 1
按赞同
/
按时间
FengTianYa
分享
微博
QQ
微信
回复
4天前
相关问题
VectorElement怎么定义对应的xml
8803浏览 • 2回复 待解决
#鸿蒙通关秘籍#如何生成XML文件
136浏览 • 1回复 待解决
xml文件数据解析 ,都有哪些步骤?
770浏览 • 1回复 待解决
xml没有自动补全,要怎么
7901浏览 • 3回复 待解决
鸿蒙 | Jar包中解析xml文件为空值。
7451浏览 • 1回复 待解决
HarmonyOS 有没有xml描述的Shape?
20浏览 • 1回复 待解决
我想用XML布局增加一个图片怎么实现?
10882浏览 • 4回复 待解决
XML CheckBox 图标间隔能设置吗?
4439浏览 • 1回复 待解决
如何查看官方的xml文档?
10840浏览 • 2回复 待解决
关于xml中include的使用问题
7475浏览 • 2回复 待解决
java代码如何为button添加xml背景?
4074浏览 • 2回复 待解决
HarmonyOS 生成xml时缓冲区大小问题
348浏览 • 1回复 待解决
求助:devecostudio中的xml没有color preview
6150浏览 • 2回复 待解决
数据库存word怎么
3214浏览 • 1回复 待解决