ฉันใช้ตัวแปลง XML ในตัวของ Java เพื่อรับเอกสาร DOM และพิมพ์ XML ที่เป็นผลลัพธ์ ปัญหาคือไม่มีการเยื้องข้อความเลยทั้งๆที่ตั้งค่าพารามิเตอร์ "เยื้อง" ไว้อย่างชัดเจน
โค้ดตัวอย่าง
public class TestXML {
public static void main(String args[]) throws Exception {
ByteArrayOutputStream s;
Document d = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument();
Transformer t = TransformerFactory.newInstance().newTransformer();
Element a,b;
a = d.createElement("a");
b = d.createElement("b");
a.appendChild(b);
d.appendChild(a);
t.setParameter(OutputKeys.INDENT, "yes");
s = new ByteArrayOutputStream();
t.transform(new DOMSource(d),new StreamResult(s));
System.out.println(new String(s.toByteArray()));
}
}
ผลลัพธ์
<?xml version="1.0" encoding="UTF-8" standalone="no"?><a><b/></a>
ผลลัพธ์ที่ต้องการ
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<a>
<b/>
</a>
ความคิด?
INDENT=yes
ฉันยังต้องเพิ่มสิ่งนี้ด้วย:t.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "2");