일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
- oracle
- 전자정부프레임워크
- PHP
- Spring
- jsr 296
- 선택적조인
- MySQL
- 가우스
- iBATIS
- ibsheet
- JSON
- Eclipse
- appspresso
- tomcat
- Android
- rowspan
- Struts
- jQuery
- swingx
- Google Map
- GPS
- phonegap
- JDOM
- node.js
- PLSQL
- dock
- Ajax
- WebLogic
- sencha touch
- MFC
- Today
- Total
목록JDOM (3)
Where The Streets Have No Name
import java.io.File; import java.io.FileOutputStream; import java.util.Iterator; import java.util.List; import org.jdom.Document; import org.jdom.Element; import org.jdom.JDOMException; import org.jdom.input.SAXBuilder; import org.jdom.output.Format; import org.jdom.output.XMLOutputter; import org.jdom.xpath.XPath; public class CdrXmlDemo4 { public static void main(String[] args) { try { SAXBuil..
import java.io.FileOutputStream; import java.io.IOException; import java.math.BigInteger; import org.jdom.Document; import org.jdom.Element; import org.jdom.output.Format; import org.jdom.output.XMLOutputter; public class CdrXmlDemo1 { public static void main(String[] args) { Element root = new Element("cdr"); Element message = new Element("message"); root.addContent(message); Element messageId ..
import java.io.File; import org.jdom.Document; import org.jdom.JDOMException; import org.jdom.input.SAXBuilder; import org.jdom.output.Format; import org.jdom.output.XMLOutputter; public class XMLOutputterDemo2 { public static void main(String[] args) { try { SAXBuilder b = new SAXBuilder(false); // true -> validate // Create a JDOM document. Document doc = b.build(new File("e:/people.xml")); //..