Ver Mensaje Individual
  #4 (permalink)  
Antiguo 11/11/2004, 08:56
Iv4n
 
Fecha de Ingreso: enero-2003
Mensajes: 52
Antigüedad: 22 años
Puntos: 0
Pues es practicamente solo unalinea la diferencia a como se hace con un FileInputStream,
de hecho es el mismo metodo del DOMParser...


String xmlContent = "<xml>...............................</xml>";
ByteArrayInputStream xmlStream = new ByteArrayInputStream(xmlContent.getBytes());

luego usas el metodo...
public Document parse(InputStream in)
throws SAXException, IOException;


Lo demas es exactamente igual a como usualmente lo haces con Xerces y un FileInputStream...