本文整理汇总了Java中javax.xml.transform.dom.DOMSource.setNode方法的典型用法代码示例。如果您正苦于以下问题:Java DOMSource.setNode方法的具体用法?Java DOMSource.setNode怎么用?Java DOMSource.setNode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.xml.transform.dom.DOMSource
的用法示例。
在下文中一共展示了DOMSource.setNode方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: save
import javax.xml.transform.dom.DOMSource; //导入方法依赖的package包/类
private void save(String fileName, Document doc)
throws TransformerException, IOException {
TransformerFactory transFactory = TransformerFactory.newInstance();
Transformer transformer = transFactory.newTransformer();
transformer.setOutputProperty(OutputKeys.ENCODING, "UTF-8");
transformer.setOutputProperty(OutputKeys.INDENT, "yes");
transformer.setOutputProperty(OutputKeys.METHOD, "xml");
transformer.setOutputProperty(
"{http://xml.apache.org/xslt}indent-amount", "4");
DOMSource source = new DOMSource();
source.setNode(doc);
StreamResult result = new StreamResult();
OutputStream out = new FileOutputStream(fileName);
result.setOutputStream(out);
transformer.transform(source, result);
out.close();
}
示例2: testCreateTxDoc
import javax.xml.transform.dom.DOMSource; //导入方法依赖的package包/类
@Test
public void testCreateTxDoc() throws TransformerException, ParserConfigurationException {
Transformer transformer = TransformerFactory.newInstance().newTransformer();
StreamResult result = new StreamResult(System.out);
DOMSource source = new DOMSource();
/* This should not throw an Illegal Argument Exception */
//Test empty DOMSource
transformer.transform(source, result);
//Test DOMSource having only an empty node
source.setNode(DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument());
transformer.transform(source, result);
}