This will parse an XML stream and create a DOM document. @param is The stream to get the XML from. @return The DOM document. @throws IOException It there is an error creating the dom.
(InputStream is)
| 54 | * @throws IOException It there is an error creating the dom. |
| 55 | */ |
| 56 | public static Document parse(InputStream is) throws IOException |
| 57 | { |
| 58 | return parse(is, false); |
| 59 | } |
| 60 | |
| 61 | /** |
| 62 | * This will parse an XML stream and create a DOM document. |
no outgoing calls