Ver Mensaje Individual
  #2 (permalink)  
Antiguo 13/04/2008, 12:23
papitu76
 
Fecha de Ingreso: abril-2004
Mensajes: 185
Antigüedad: 20 años, 9 meses
Puntos: 0
Re: Problema al tratar archivos excel en formato xml con JDOM

La solucion ha sido utilizar

FileOutputStream fileOut2 = new FileOutputStream("prueba4.xml");
; out.output(doc,fileOut2);
; fileOut2.flush();
; fileOut2.close();

en vez de

FileWriter fileOut2 = new FileWriter("prueba4.xml");
// XMLOutputter serializer = new XMLOutputter(" ",true);
XMLOutputter serializer = new XMLOutputter();
serializer.output(doc, fileOut2);
__________________
Recologic