D dux Dux 3. August 2011 #1 Hallo zusammen, wie kann ich aus einem InputStream einen DOM Baum bilden? Danke Dux
I inter Mitglied 5. August 2011 #2 Hallo, das steht bestimmt hier schon irgendwo. Aber ich erbarme mich mal Code: import javax.xml.parsers.*; import org.w3c.dom.*; InputStream is; DocumentBuilder builder = DocumentBuilderFactory.newInstance().getDocumentBuilder(); Document doc = builder.parse(is); Bitteschöön.
Hallo, das steht bestimmt hier schon irgendwo. Aber ich erbarme mich mal Code: import javax.xml.parsers.*; import org.w3c.dom.*; InputStream is; DocumentBuilder builder = DocumentBuilderFactory.newInstance().getDocumentBuilder(); Document doc = builder.parse(is); Bitteschöön.