자바 XML 분석 시리즈

자바 해석 XML 은 여러 가지 방식 이 있 기 때문에 몇 가지 서로 다른 시리즈 로 나 누 어 말 해 야 한다.구체 적 인 안 배 는 다음 과 같다.
1.DOM 의 가장 기본 적 인 해석 XML;
2.SAX 이벤트 기반 XML 분석;http://gaofulai1988.iteye.com/blog/2262677
3.JDOM 의 좋 은 해석 XML;http://gaofulai1988.iteye.com/blog/2262680
4.DOM4J 의 유용 한 해석 XML;http://gaofulai1988.iteye.com/blog/2262683
5.XPATH 해석 XML;http://gaofulai1988.iteye.com/admin/blogs/2262787
6.XML 과 Bean 사이 의 전환.http://gaofulai1988.iteye.com/admin/blogs/2262787
하 나 는 DOM 이 XML 을 해석 하 는 것 이다.DOM 의 기본 사상 은 XML 문 서 를 하나의 트 리 로 해석 한 다음 에 부자 노드,형제 노드 에 따라 이 나 무 를 옮 겨 다 니 는 것 이다.그래서 가장 큰 특징 은 분석 하기 전에 전체 문 서 를 불 러 오 는 것 입 니 다.이것 도 가장 부족 한 점 입 니 다.만약 이 XML 파일 이 매우 크다 면 어떻게 하 시 겠 습 니까?
DOM 을 사용 하기 전에 두 가지 개념 이 있 습 니 다.Node(노드)와 Element(요소)간 의 차이 점 은 다음 과 같 습 니 다.
Element 는 반드시 Node 이 고,Node 는 반드시 Element 가 아니다.어떻게 이해 합 니까?

  <name>test</name>

name 은 하나의 노드 이자 요소 이 며,test 는 하나의 노드 일 뿐,하나의 요소 가 아 닙 니 다.
자,예 를 들 어 봅 시다.xml 파일 부터 준비 하 세 요.

<?xml version="1.0" encoding="UTF-8"?>    
<Students>
   <student>
       <NO id="123">123456</NO>
	   <NAME>abc</NAME>
   </student>
   <student>
   
       <NO id="234">456789</NO>
	   <NAME>def</NAME>
   </student>
</Students>

DOM 분석 코드 는 다음 과 같 습 니 다:

public static void main(String args[]) throws ParserConfigurationException,
			SAXException, IOException {
		// xml     
		File f = new File("D:" + File.separator + "test.xml");
		DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
		DocumentBuilder builder = factory.newDocumentBuilder();
		//      Document  
		Document doc = builder.parse(f);
        //             
		NodeList nl = doc.getElementsByTagName("student");
		
		for (int i = 0; i < nl.getLength(); i++) {
			//       
			System.out.print("No:"
					+ doc.getElementsByTagName("NO").item(i).getFirstChild()
							.getNodeValue());
			
			System.out.print("\taddress:"
					+ doc.getElementsByTagName("NAME").item(i).getFirstChild()
							.getNodeValue());
			// Element   Node, Node    Element
			Element e=(Element)doc.getElementsByTagName("NO").item(i);
			//      
			System.out.println("\tid="+e.getAttribute("id"));
		}
	}

좋은 웹페이지 즐겨찾기