JavaTM Platform
Standard Ed. 6

인터페이스
org.w3c.dom.Document 의 사용

Document 를 사용하고 있는 패키지
javax.imageio.metadata 메타데이타의 read 및 기입을 처리하는 Java 이미지 입출력 API 의 패키지입니다.  
javax.xml.parsers XML 문서의 처리를 가능하게 하는 클래스를 제공합니다.  
javax.xml.soap SOAP 메세지의 작성과 구축을 실행하는 API 를 제공합니다.  
org.w3c.dom XML 데이터 처리용의 Java API 의 컴퍼넌트 API 인 DOM (Document Object Model)의 인터페이스를 제공합니다.  
org.w3c.dom.ls   
 

javax.imageio.metadata 에서의 Document 의 사용
 

Document 를 돌려주는 javax.imageio.metadata 의 메소드
 Document IIOMetadataNode. getOwnerDocument ()
          IIOMetadataNode 는 어느 Document 에도 속하지 않기 때문에,null 를 돌려줍니다.
 

javax.xml.parsers 에서의 Document 의 사용
 

Document 를 돌려주는 javax.xml.parsers 의 메소드
abstract  Document DocumentBuilder. newDocument ()
          DOM 트리의 구축에 사용하는 DOM Document 객체의 새로운 인스턴스를 가져옵니다.
 Document DocumentBuilder. parse (File  f)
          지정된 파일의 내용을 XML 문서로서 구문 분석 해, 새로운 DOM Document 객체를 돌려줍니다.
abstract  Document DocumentBuilder. parse (InputSource  is)
          지정된 입력 소스의 내용을 XML 문서로서 구문 분석 해, 새로운 DOM Document 객체를 돌려줍니다.
 Document DocumentBuilder. parse (InputStream  is)
          지정된 InputStream 의 내용을 XML 문서로서 구문 분석 해, 새로운 DOM Document 객체를 돌려줍니다.
 Document DocumentBuilder. parse (InputStream  is, String  systemId)
          지정된 InputStream 의 내용을 XML 문서로서 구문 분석 해, 새로운 DOM Document 객체를 돌려줍니다.
 Document DocumentBuilder. parse (String  uri)
          지정된 URI 의 내용을 XML 문서로서 해석해, 새로운 DOM Document 객체를 돌려줍니다.
 

javax.xml.soap 에서의 Document 의 사용
 

Document 를 구현하고 있는 javax.xml.soap 의 클래스
 class SOAPPart
          SOAPMessage 객체의 SOAP 고유의 부분용의 컨테이너입니다.
 

Document 를 돌려주는 javax.xml.soap 의 메소드
 Document SOAPBody. extractContentAsDocument ()
          DOM Document 를 새롭게 작성해, 이 SOAPBody 의 최초의 아이를 문서 요소로서 설정합니다.
 

Document 형의 파라미터를 가지는 javax.xml.soap 의 메소드
 SOAPBodyElement SOAPBody. addDocument (Document  document)
          DOM Document 의 루트 노드를, 이 SOAPBody 객체에 추가합니다.
 

org.w3c.dom 에서의 Document 의 사용
 

Document 를 돌려주는 org.w3c.dom 의 메소드
 Document DOMImplementation. createDocument (String  namespaceURI, String  qualifiedName, DocumentType  doctype)
          지정된 형태의 DOM Document 객체와 그 문서 요소를 작성합니다.
 Document Node. getOwnerDocument ()
          이 노드에 관련지을 수 있었던 Document 객체입니다.
 

org.w3c.dom.ls 에서의 Document 의 사용
 

Document 를 돌려주는 org.w3c.dom.ls 의 메소드
 Document LSLoadEvent. getNewDocument ()
          로드를 완료한 문서입니다.
 Document LSParser. parse (LSInput  input)
          LSInput 로 식별된 자원으로부터 XML 문서를 해석합니다.
 Document LSParser. parseURI (String  uri)
          URI 참조「IETF RFC 2396」으로 특정된 장소로부터 XML 문서를 해석합니다.
 


JavaTM Platform
Standard Ed. 6

버그의 보고와 기능의 요청
한층 더 자세한 API 레퍼런스 및 개발자 문서에 대해서는,Java SE 개발자용 문서를 참조해 주세요. 개발자전용의 상세한 해설, 개념의 개요, 용어의 정의, 버그의 회피책, 및 코드 실례가 포함되어 있습니다.

Copyright 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms . Documentation Redistribution Policy 도 참조해 주세요.