Core Java
[Source] Create Xml File Demo
헤르메스의날개
2020. 12. 20. 05:06
728x90
출처 : http://www.tutorialspoint.com/java_xml/java_jdom_create_document.htm
package com.file .utils;
import java. io.IOException ;
import org. jdom.Attribute ;
import org. jdom.Document ;
import org. jdom.Element ;
import org. jdom.output .Format;
import org. jdom.output .XMLOutputter;
public class CreateXmlFileDemo {
public static void main( String[] args ) {
try {
// root element
Element carsElement = new Element ("cars") ;
Document doc = new Document (carsElement) ;
// supercars element
Element supercarElement = new Element ("supercars") ;
supercarElement.setAttribute (new Attribute("company" , "Ferrari" ));
// supercars element
Element carElement1 = new Element ("carname") ;
carElement1.setAttribute (new Attribute("type" , "formula one" ));
carElement1.setText ("Ferrari 101") ;
Element carElement2 = new Element ("carname") ;
carElement2.setAttribute (new Attribute("type" , "sports" ));
carElement2.setText ("Ferrari 202") ;
supercarElement.addContent (carElement1) ;
supercarElement.addContent (carElement2) ;
doc.getRootElement ().addContent (supercarElement) ;
XMLOutputter xmlOutput = new XMLOutputter ();
// display ml
xmlOutput.setFormat (Format.getPrettyFormat ());
xmlOutput.output (doc, System.out );
} catch (IOException e) {
e.printStackTrace ();
}
}
}
결과
<?xml version="1.0" encoding="UTF-8"?> <cars> <supercars company="Ferrari"> <carname type="formula one">Ferrari 101</carname> <carname type="sports">Ferrari 202</carname> </supercars> </cars> |
728x90