gpt4 book ai didi

java - 如何将 XSLT 转换为带有编码数据的纯文本?

转载 作者:行者123 更新时间:2023-12-02 11:58:41 24 4
gpt4 key购买 nike

我正在尝试将 XSLT 文件转换为纯文本。问题是 XSLT 文件具有编码值,例如 & 是 & 并且 Transformer 工厂输出编码值。除了使用 XML 解码器然后转换为纯文本之外,还有更好的方法吗?

TransformerFactory tFactory = TransformerFactory.newInstance();
Transformer transformer = tFactory.newTransformer(new StreamSource(XSLT_Source));
transformer.setOutputProperty("media-type", "text/plain");
transformer.transform(new StreamSource(XSLT_Source), new StreamResult(new FileOutputStream(outputTrager)));

最佳答案

如果您可以编辑样式表,请确保它使用 <xsl:output method="text"/> 。如果您想使用 JAXP API 以编程方式进行设置,请参阅 https://docs.oracle.com/javase/8/docs/api/javax/xml/transform/OutputKeys.html#METHOD ,您需要设置

transformer.setOutputProperty(javax.xml.transform.OutputKeys.METHOD, "text");

关于java - 如何将 XSLT 转换为带有编码数据的纯文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47417750/

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