http://tutorials.jenkov.com/java-xml/stax-xmloutputfactory.html에서 가져옴
The class javax.xml.stream.XMLOutputFactory
is a root component of the Java StAX API. From this class you can create both an XMLStreamWriter
and an XMLEventWriter
. Here are two examples:
XMLOutputFactory factory = XMLOutputFactory.newInstance(); XMLEventWriter eventWriter = factory.createXMLEventWriter( new FileWriter("data\\test.xml")); XMLStreamWriter streamWriter = factory.createXMLStreamWriter( new FileWriter("data\\test.xml"));
XMLOutputFactory Properties
You can set one property on the XMLOutputFactory
instance using the setProperty()
method. Here is an example:
factory.setProperty(XMLOutputFactory.IS_REPAIRING_NAMESPACES, true);
For a full list of properties and their meaning, see the official JavaDoc (in Java 6) for the StAX API.
'밤을 지새다 > Java' 카테고리의 다른 글
Java StAX: XMLEventWriter - The Iterator Writer API (0) | 2012.04.30 |
---|---|
Java StAX: XMLEventReader - The Iterator API (0) | 2012.04.30 |
Java StAX: XMLInputFactory (0) | 2012.04.30 |
Java StAX (0) | 2012.04.30 |
Exceptions (0) | 2011.09.05 |