DOM은 XML문서를 몽땅 메모리에 올려서 다룬다. 그에 비하여 SAX 방식은 한줄한줄 읽어나가면서 처리 (몽땅 메모리에 올리지 않는다.) 그외에도 여러가지 방식이 있다. Document -------- Element (Root Element) ---------- Element ----- Attr ----- Text ---------- Element ----- CDataSection --------------------------------------- import java.io.File; import javax.xml.parsers.DocumentBuilder; import javax.xml.parsers.DocumentBuilderFactory; import org.w3c.dom.Document; i..