Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JDOM2 ライブラリを使用して XML ドキュメントを作成したとします。xml-stylesheet を追加して次のようなものを取得するための API は何ですか:
<?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)