0
假設您已經使用JDOM2庫構建了XML文檔。什麼是添加xml樣式表來獲得類似的API:如何將xml樣式表應用到JDOM2文檔
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="test.xsl"?>
<root>
<node>
...
</root>
假設您已經使用JDOM2庫構建了XML文檔。什麼是添加xml樣式表來獲得類似的API:如何將xml樣式表應用到JDOM2文檔
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="test.xsl"?>
<root>
<node>
...
</root>
我在周圍釣了一段時間才找到正確的方法調用。所以在這裏,以防萬一有人在看:
Document doc = ...
Map<String, String> m = new HashMap<String, String>();
m.put("href", "test.xsl");
m.put("type", "text/xsl");
doc.addContent(0, new ProcessingInstruction("xml-stylesheet", m)
很好,我討厭釣魚) – ycomp