JDOM 으로 XML 문 서 를 해석 하기(2)
<?xml version="1.0" encoding="GBK"?>
<root>
<!--This is my comments-->
<hello google="www.google.com">
<world test="hehe">
<aaa a="b" x="y" gg="mm">text content</aaa>
</world>
</hello>
</root>
package com.syh.xml.jdom;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Iterator;
import java.util.List;
import org.jdom.Attribute;
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;
/**
* ( ) XML --->
* @author Administrator
*
*/
public class JDomTest2 {
public static void main(String[] args) throws Exception {
// JDOM
SAXBuilder builder = new SAXBuilder() ;
// , XML
Document doc = builder.build(new File("jdom.xml")) ;
// XML
Element rootEle = doc.getRootElement() ;
System.out.println(rootEle.getName());
//
Element hello = rootEle.getChild("hello") ;
System.out.println(hello.getName());
System.out.println(hello.getText());
//
List<Attribute> list = hello.getAttributes() ;
for(Iterator<Attribute> iter = list.iterator() ; iter.hasNext() ; ) {
Attribute attr = iter.next() ;
String attrName = attr.getName() ;
String attrValue = attr.getValue() ;
System.out.println(attrName + " = " + attrValue);
}
//
hello.removeChild("world") ;
XMLOutputter out = new XMLOutputter(Format.getPrettyFormat().setIndent(" ")) ;
out.output(doc, new FileOutputStream("jdom2.xml")) ;
}
}
다음은 콘 솔 에서 출력 한 결과 입 니 다.
root
hello
google = www.google.com
다음은 XML 문 서 를 분석 한 결과 입 니 다.
<!-- jdom2.xml -->
<?xml version="1.0" encoding="UTF-8"?>
<root>
<!--This is my comments-->
<hello google="www.google.com" />
</root>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Is Eclipse IDE dying?In 2014 the Eclipse IDE is the leading development environment for Java with a market share of approximately 65%. but ac...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.