일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MySQL
- Eclipse
- 전자정부프레임워크
- PHP
- Ajax
- 가우스
- rowspan
- Google Map
- ibsheet
- Spring
- node.js
- sencha touch
- Struts
- swingx
- JDOM
- appspresso
- WebLogic
- Android
- jQuery
- tomcat
- PLSQL
- oracle
- jsr 296
- JSON
- iBATIS
- GPS
- dock
- MFC
- 선택적조인
- phonegap
- 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")); //..