org.w3c.dom을 예쁘게 인쇄하는 가장 빠른 방법은 무엇입니까?stdout할 문서?
하는 가장 쉬운 은 무엇입니까?org.w3c.dom.Document
쫓을을 수???
★★printDocument(doc, System.out)
여기서 이 방법은 다음과 같습니다.
public static void printDocument(Document doc, OutputStream out) throws IOException, TransformerException {
TransformerFactory tf = TransformerFactory.newInstance();
Transformer transformer = tf.newTransformer();
transformer.setOutputProperty(OutputKeys.OMIT_XML_DECLARATION, "no");
transformer.setOutputProperty(OutputKeys.METHOD, "xml");
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
transformer.setOutputProperty(OutputKeys.ENCODING, "UTF-8");
transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "4");
transformer.transform(new DOMSource(doc),
new StreamResult(new OutputStreamWriter(out, "UTF-8")));
}
(the)indent-amount
이며, 하지 않을 수 ).
그럼 어떻게 해?
OutputFormat format = new OutputFormat(doc);
format.setIndenting(true);
XMLSerializer serializer = new XMLSerializer(System.out, format);
serializer.serialize(doc);
jcabi-xml을 1개의 라이너로 시험합니다.
String xml = new XMLDocument(document).toString();
필요한 의존관계는 다음과 같습니다.
<dependency>
<groupId>com.jcabi</groupId>
<artifactId>jcabi-xml</artifactId>
<version>0.14</version>
</dependency>
private void printNode(Node rootNode, String spacer) {
System.out.println(spacer + rootNode.getNodeName() + " -> " + rootNode.getNodeValue());
NodeList nl = rootNode.getChildNodes();
for (int i = 0; i < nl.getLength(); i++)
printNode(nl.item(i), spacer + " ");
}
이렇게 하면 재귀 강하/강하/강하를 사용하여 올바르게 정형화된 출력이 반환됩니다.
private static boolean skipNL;
private static String printXML(Node rootNode) {
String tab = "";
skipNL = false;
return(printXML(rootNode, tab));
}
private static String printXML(Node rootNode, String tab) {
String print = "";
if(rootNode.getNodeType()==Node.ELEMENT_NODE) {
print += "\n"+tab+"<"+rootNode.getNodeName()+">";
}
NodeList nl = rootNode.getChildNodes();
if(nl.getLength()>0) {
for (int i = 0; i < nl.getLength(); i++) {
print += printXML(nl.item(i), tab+" "); // \t
}
} else {
if(rootNode.getNodeValue()!=null) {
print = rootNode.getNodeValue();
}
skipNL = true;
}
if(rootNode.getNodeType()==Node.ELEMENT_NODE) {
if(!skipNL) {
print += "\n"+tab;
}
skipNL = false;
print += "</"+rootNode.getNodeName()+">";
}
return(print);
}
dom4j를 사용하면 dom4가 됩니다.JDOM.asString()
언급URL : https://stackoverflow.com/questions/2325388/what-is-the-shortest-way-to-pretty-print-a-org-w3c-dom-document-to-stdout
'source' 카테고리의 다른 글
변수별 JavaScript 개체 키 설정 (0) | 2022.10.25 |
---|---|
구체화: 드롭다운에서 null의 속성 'tabIndex'를 설정할 수 없습니다._make Dropdown Focusable(초점 설정 가능) (0) | 2022.10.25 |
C에서의 MariaDB 사용 (0) | 2022.10.25 |
iframe에 자동 재생 YouTube 비디오를 삽입하려면 어떻게 해야 합니까? (0) | 2022.10.25 |
JavaScript 객체의 키를 값으로 가져오려면 어떻게 해야 합니까? (0) | 2022.10.25 |