|    
			
				13/04/2008, 12:23
			
			
			  | 
  |   |  |  |  Fecha de Ingreso: abril-2004 
						Mensajes: 185
					 Antigüedad: 21 años, 6 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);
     |