编辑 XML 文件数据的最佳方法是什么?
我有一些来自外部客户端的 xml 文件,我想编辑其中的数据而不是 xml 部分。
有谁知道实现这一目标的最佳(最好是免费)方法?
我已经尝试过 Excel,但我没有 xslt 样式表,并且编辑后它不会让我保存文件。
欢迎任何想法。
I have some xml files from an external client and i would like to edit the data within them NOT the xml parts.
Does anyone one know the best (preferably free) way to achieve this?
I have tried excel but I do not have the xslt style sheet and it will not let me save the file once I edit it.
Any ideas welcome.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于 XML 是文本,任何文本编辑器都可以正常工作。对于 XML,“数据”可以是文件中的任何内容,包括结构,因此您需要编辑的内容完全取决于您的应用程序。
然而,一般来说,尖括号内的任何内容(
<
和>
)都是数据,元素上的属性(尖括号中的内容)也是数据。经常数据。Since XML is text, any text editor will work fine. With XML, "data" can be just about anything in the file, including the structure, so what you will need to edit is entirely dependent on your application.
In general, however, anything non inside angle brackets (
<
and>
) is data, and also attributes on the elements (the things in the angle brackets) is also often data.