Scala 方法将 XML 直接漂亮地打印到 java.io.Writer(不是字符串)?

发布于 2024-10-05 04:04:08 字数 238 浏览 1 评论 0原文

scala.xml.XML.write 方法支持将 XML 节点序列输出到 java.io.Writer,例如在 servlet 响应中。然而,它似乎没有以漂亮的打印格式输出 XML 的选项。是否有任何 Scala 标准库函数可以将 XML 节点序列漂亮地打印到 java.io.Writer?

注意:scala.xml.PrettyPrinter 似乎不是答案,因为它只返回一个字符串。漂亮的打印机需要直接输出到 java.io.Writer。

The scala.xml.XML.write method supports outputting an XML node sequence to a java.io.Writer, for example in a servlet response. However, it doesn't seem to have an option to output the XML in pretty printed format. Is there any Scala standard library function to pretty print an XML node sequence to a java.io.Writer?

Note: scala.xml.PrettyPrinter does not seem to be the answer because it only returns a string. The pretty printer would need to output directly to a java.io.Writer.

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

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

发布评论

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

评论(2

柏拉图鍀咏恒 2024-10-12 04:04:08

我编写了一个 PrettyPrinter ,可以直接写入给定文件: XMLPrettyPrinter

我在生产中使用它。

I wrote a PrettyPrinter that can directly write to a given file: XMLPrettyPrinter

I use it in production.

荭秂 2024-10-12 04:04:08

scala.xml.PrettyPrinter.format(Node,StringBuilder) 可能会通过将 append 调用重定向到编写器来滥用...但是,这在很大程度上取决于当前的实现PrettyPrinter,所以这是一个非答案;-)

scala.xml.PrettyPrinter.format(Node,StringBuilder) could be abused by redirecting the append calls to the writer ... However, this depends heavily on the current implementation of PrettyPrinter, so this is a non-answer ;-)

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