在Java 中格式化XML 字串
作為Java 開發人員,您可能會遇到這樣的情況:XML 沒有字串換行符或縮進,需要將其轉換為格式良好的字串。這對於調試目的或以可讀方式呈現 XML 資料特別有用。
要完成此任務,您可以利用 Java API for XML 處理 (JAXP) 和文件物件模型 (DOM) 來轉換XML 字串轉換為格式化表示。
首先,從 TransformerFactory 建立一個新的 Transformer 物件。將“INDENT”和“{http://xml.apache.org/xslt}indent-amount”屬性分別設為“yes”和“2”,啟用換行和縮排:
Transformer transformer = TransformerFactory.newInstance().newTransformer(); transformer.setOutputProperty(OutputKeys.INDENT, "yes"); transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "2");
接下來,將XML字串轉換為DOMSource物件:
String inputXml = "<tag><nested>hello</nested></tag>"; DOMSource source = new DOMSource(DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(new InputSource(new StringReader(inputXml))));
然後,建立一個StreamResult物件來保存格式化的XML string:
StreamResult result = new StreamResult(new StringWriter());
最後,使用轉換器將來源 DOM 轉換為格式化的 XML 字串:
transformer.transform(source, result);
result.getWriter() 物件將包含格式化的XML字串:
String formattedXml = result.getWriter().toString();
範例:
String unformattedXml = ""; Transformer transformer = TransformerFactory.newInstance().newTransformer(); transformer.setOutputProperty(OutputKeys.INDENT, "yes"); transformer.setOutputProperty("{http://xml.apache.org/xslt}indent-amount", "2"); DOMSource source = new DOMSource(DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(new InputSource(new StringReader(unformattedXml)))); StreamResult result = new StreamResult(new StringWriter()); transformer.transform(source, result); System.out.println(result.getWriter().toString()); hello
輸出:
<?xml version="1.0" encoding="UTF-8"?> <tag> <nested>hello</nested> </tag>
以上是如何使用 JAXP 和 DOM 在 Java 中格式化未格式化的 XML 字串?的詳細內容。更多資訊請關注PHP中文網其他相關文章!