- 전체
- JAVA 일반
- JAVA 수학
- JAVA 그래픽
- JAVA 자료구조
- JAVA 인공지능
- JAVA 인터넷
- Java Framework
- Java GUI (AWT,SWING,SWT,JFACE)
- SWT and RCP (web RAP/RWT)[eclipse], EMF
JAVA 자료구조 Java XML Parse, Java XML 파싱 샘플
2015.03.03 12:56
XML Processing using XERCES Java Parser Karl Seematter, Akadia AG, Information Technology, CH-3604 Thun [출처] http://www.akadia.com/services/java_xml_parser.html
| |
Using XML to transport information between different systems is nowadays a state of the art technology. Searching the WEB you'll find a huge set of examples how to validate and parse an XML document. But when it comes to the point where you have to create a XML document and send it as stream (i.g. character-stream, string, byte-array, etc.) to another system, it becomes difficult to find a proper example. Furthermore, different implementations of the DOM specification using different class names to do the same thing. Here comes an example which creates a XML Document using DOM and transforms it to a String. We used the XERCES Java Parser V1_4_3 from apache.org. Xerces (named after the Xerces Blue butterfly) provides world-class XML parsing and generation. Fully-validating parsers are available for both Java and C++, implementing the W3C XML and DOM (Level 1 and 2) standards, as well as the de facto SAX (version 2) standard. The parsers are highly modular and configurable. Initial support for XML Schema (draft W3C standard) is also provided. Runing the example produces the following output <?xml version="1.0" encoding="UTF-8"?> Here is the Java Code: for ProbeMsg.java import java.io.*; Compile the Code with javac -classpath ".;C:\java\xerces-1_4_3\xerces.jar" ProbeMsg.java Run the Code with java -classpath ".;C:\java\xerces-1_4_3\xerces.jar" ProbeMsg Links and Download Logging: log4j http://jakarta.apache.org/log4j/docs/index.html Download above example | |
광고 클릭에서 발생하는 수익금은 모두 웹사이트 서버의 유지 및 관리, 그리고 기술 콘텐츠 향상을 위해 쓰여집니다.
댓글 0
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 수 |
|---|---|---|---|---|
| 7 |
REST with Java (JAX-RS) using Jersey - Tutorial
| 졸리운_곰 | 2015.07.16 | 434 |
| 6 |
Tutorial – REST API design and implementation in Java with Jersey and Spring
| 졸리운_곰 | 2015.07.16 | 830 |
| 5 | 12.2. Using REST in Java | 졸리운_곰 | 2015.07.16 | 230 |
| 4 | JAVA Telnet 프로그램 코드 | 졸리운_곰 | 2015.07.12 | 915 |
| 3 | swt java xulrunner 3.6 캐쉬 비우기 : html 깨짐 | 졸리운_곰 | 2015.04.27 | 339 |
| 2 | JAVA SWT XULRUNNER 브라우저 target=_black 멀티 윈도우 표시 | 졸리운_곰 | 2015.04.20 | 401 |
| 1 | NetStat call and get result text in Java | 졸리운_곰 | 2014.02.25 | 903 |

