gpt4 book ai didi

java - 如何添加处理指令 [jdom2]

转载 作者:行者123 更新时间:2023-12-01 22:17:40 24 4
gpt4 key购买 nike

当有处理指令时

<?xml-stylesheet  type="application/xml"  href="catalog.xsl" ?>

如何通过jdom2添加到现有的 XML,例如

<?xml version="1.0" encoding="ISO-8859-1"?>

<catalog xmlns:foo="http://www.foo.org/" xmlns:bar="http://www.bar.org">
<foo:cd>
<title>Empire Burlesque</title>
<artist>Bob Dylan</artist>
<country>USA</country>
<company>Columbia</company>
<price>10.90</price>
<bar:year>1985</bar:year>
</foo:cd>
<foo:cd>
<title>Hide your heart</title>
<artist>Bonnie Tyler</artist>
<country>UK</country>
<company>CBS Records</company>
<price>9.90</price>
<bar:year>1988</bar:year>
</foo:cd>
<foo:cd>
<title>Greatest Hits</title>
<artist>Dolly Parton</artist>
<country>USA</country>
<company>RCA</company>
<price>9.90</price>
<bar:year>1982</bar:year>
</foo:cd>
</catalog>

为了完成示例,这里是 XSL

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:foo="http://www.foo.org/" xmlns:bar="http://www.bar.org">
<xsl:template match="/">
<html>
<body>
<h2>My CD Collection</h2>
<table border="1">
<tr bgcolor="#9acd32">
<th>Title</th>
<th>Artist</th>
<th>Country</th>
<th>Company</th>
<th>Price</th>
<th>Year</th>
</tr>
<xsl:for-each select="catalog/foo:cd">
<tr>
<td><xsl:value-of select="title"/></td>
<td><xsl:value-of select="artist"/></td>
<td><xsl:value-of select="country"/></td>
<td><xsl:value-of select="company"/></td>
<td><xsl:value-of select="price"/></td>
<td><xsl:value-of select="bar:year"/></td>
</tr>
</xsl:for-each>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>

最佳答案

类似的东西

SAXBuilder builder = new SAXBuilder();
Document doc = (Document) builder.build(xmlFile);
ProcessingInstruction xsl = new ProcessingInstruction("xml-stylesheet","type='text/xsl' href='catalog.xsl'");
doc.addContent(0, xsl);

应该可以工作。请添加您的代码以获得更适合您的项目的答案。

关于java - 如何添加处理指令 [jdom2],我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30668157/

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