18/05/2004, 06:43
|
| | Fecha de Ingreso: mayo-2004
Mensajes: 75
Antigüedad: 20 años, 8 meses Puntos: 2 | |
Prueba esto a ver si te sirve
try{
String str = "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<root>\n<tlf>+584123161640</tlf>\n<op>Digitel</op>\n<sc>3344</sc>\n<body>Prueba de mensaje</body>\n</root>";
str = str.replaceAll("\n","\r\n");
FileOutputStream fos = new FileOutputStream("fichero.txt");
PrintStream ps = new PrintStream(fos);
ps.println(str);
ps.close();
}
catch(Exception ex){
} |