How to read xml use JDOM in java application
나 는 단지 사례 를 하나 만 들 었 을 뿐,다른 것 은 많 지 않다!!
코드 는 다음 과 같다.
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.ArrayList;
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;
public class ReadXML {
public static void main(String[] args) {
readxml();
}
private static void readxml() {
SAXBuilder sb=new SAXBuilder();
Document doc = null;
try {
doc=sb.build(new FileInputStream("lib/users.xml"));
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (JDOMException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
Element root=doc.getRootElement();
System.out.println(root.getName());
List children=root.getChildren();
int i=1;
elements(children,i);
}
private static void elements(List children,int i) {
Iterator itr = children.iterator();
String lo="";
for(int j=0;j<i;j++){
lo+="==";
}
boolean hasnext = false;
if(hasnext=itr.hasNext()){
while(itr.hasNext()){
Element el = (Element)itr.next();
System.out.println(lo+el.getName());
if(el.getChildren()!=null){
Iterator itr1 = el.getChildren().iterator();
elements(el.getChildren(),i+1);
}
}
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 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에 따라 라이센스가 부여됩니다.