如何使用 XML::Simple 将 XML 数据保存到文件中?
我正在使用 XML::Simple 包导入 XML 文件并更改一些内容一些子标签的属性。当数据转储时,更改是可见的:
print Dumper($data);
但是如何将编辑后的数据写入新的 XML 文件中?我确实浏览了 CPAN 页面,但一些与此相关的代码确实会有帮助。
I'm using XML::Simple package to import an XML file and change a few properties of some of the child tags. The change is visible when the data is dumped with:
print Dumper($data);
But how can I write this edited data into a new XML file? I did go through the CPAN page, but some code regarding this would really help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将
XMLout
方法与OutputFile
选项结合使用。这是一个示例(为了保护无辜者,名称已更改:):文件
out.xml
的内容是:Use the
XMLout
method with theOutputFile
option. Here is an example (names have been changed to protect the innocent :):The contents of the file
out.xml
are: