gpt4 book ai didi

java - 格式化 XML 输出/修改 apache commons-configurations2 中的 Transformer

转载 作者:行者123 更新时间:2023-11-30 02:21:32 25 4
gpt4 key购买 nike

我正在尝试从旧的 commons-configuration 迁移到 commons-configuration2,但在使用新的配置生成器时,我在使用缩进格式化 XML 输出时遇到问题。

在我这样做之前,效果很好。

XMLConfiguration configuration = new XMLConfiguration()
{
@Override
protected Transformer createTransformer()
throws ConfigurationException
{
Transformer transformer = super.createTransformer();
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
transformer.setOutputProperty("http://xml.apache.org/xslt}indent-amount", "4");
return transformer;
}
};

但是在 commons-configurations2 中,您使用 ConfigurationBuilder 来获取 XMLConfiguration 实例,这会删除创建 XMLConfiguration 子类的能力,例如如下所示:

XMLConfiguration configuration = configurations
.xmlBuilder(new File("config.xml"))
.getConfiguration();

还有其他方法可以自定义 XMLConfiguration 的转换器吗?

谢谢!

最佳答案

这是我解决这个问题的方法。

创建一个扩展 XMLConfiguration 的新类:

public class PrettyXMLConfiguration
extends XMLConfiguration
{
@Override
protected Transformer createTransformer()
throws ConfigurationException
{
Transformer transformer = super.createTransformer();
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
transformer.setOutputProperty(
"{http://xml.apache.org/xslt}indent-amount", "4");
return transformer;
}
}

像这样创建 XMLConfiguration:

XMLConfiguration builder = new Configurations()
.fileBasedBuilder(PrettyXMLConfiguration.class, new File("config.xml"))
.getConfiguration();

或者更简单:

XMLConfiguration builder = new Configurations()
.fileBased(PrettyXMLConfiguration.class, new File("config.xml"));

关于java - 格式化 XML 输出/修改 apache commons-configurations2 中的 Transformer,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46687873/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com