打开巨大的 XML 文件和 Pretty-Print
我需要查看 XML 文件,每个文件 3-4 GB。
谁能告诉我最好的免费工具/试用版来查看大尺寸的 XML,因为如果我在某个编辑器中打开它,它会给我“内存不足”?我还需要其中的漂亮打印选项。我尝试了 010 Editor
但它没有漂亮的打印选项。
I need to view XML files, each of 3-4 GB.
Could anybody tell me best free tool/trial version to view huge size XML because if I open it in some editor, its giving me "Out of memory"? I need the pretty-print option as well in it. I tried 010 Editor
but it doesn't have pretty-print option in it.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 xmllint 命令漂亮地打印 xml:
xmllint --format xml_file.xml > Pretty_xml_file.xml
,现在您可以在 vi 或您喜欢的编辑器中打开 Pretty_xml_file.xml
pretty print xml using xmllint command:
xmllint --format xml_file.xml > pretty_xml_file.xml
and now you can open pretty_xml_file.xml in vi or your favorite editor