修复格式错误的 XML

发布于 2024-11-25 07:41:22 字数 172 浏览 2 评论 0原文

我有一个巨大的文件,其中包含格式错误的 xml(主要是未转义的 XML 字符和 CDATA 部分)。我正在寻找一个合适的解析器来修复格式错误的 xml。我已经使用 IntelliJIdea 来处理一些较小的 xml 文件,但是当我给它一个大文件时 IDE 会冻结。

有没有什么不错的工具可以修复格式错误的 XML?

I have a huge file that consists of malformed xml (mostly unescaped XML characters and CDATA sections). I am looking for a decent parser that can fix-up the malformed xml. I have used IntelliJIdea to work around some smaller xml files, but the IDE freezes when I give it a huge file.

Are there any decent tools that can fix up malformed XML?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

时光匆匆的小流年 2024-12-02 07:41:22

我确信有人会告诉您返回并修复文件的生成器。如果可以的话,这无疑是最好的事情。

听起来您打算或多或少地手动完成此操作 - 寻找缺陷模式并修复它们。为此,我会使用 Notepad++ - 只是因为我知道它,它可以处理非常大的文件,并且具有良好的搜索/替换功能,包括正则表达式。不过,还有很大的改进空间 - 特别是,如果您是regexpert,则正则表达式语言有点弱。

在处理这样的文件时,任何试图理解 XML 来完成彩色编码以外的工作的操作都可能会很慢。

考虑到 Intellij 的整体卓越性,其对 XML 的支持在性能方面却极其糟糕。

I'm sure someone will tell you to go back and fix the generator of the file. If that's possible, it certainly would be the best thing to do.

It sounds like you're planning to do this more or less by hand - looking for patterns of defects and fixing them up. For that, I'd use Notepad++ - just because I know it, it will handle really big files, and has good search/replace features, including regular expressions. There's a lot of room for improvement, though - in particular, the regular expression language is a bit weak if you're a regexpert.

Anything that tries to understand the XML to do more than chromacoding is likely to be slow when dealing with a file like this.

The XML support in Intellij is shockingly bad, performance-wise, given its overall excellence.

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