Ver Mensaje Individual
  #13 (permalink)  
Antiguo 10/02/2009, 11:14
cslbcn
 
Fecha de Ingreso: marzo-2008
Mensajes: 383
Antigüedad: 16 años, 2 meses
Puntos: 5
Respuesta: Grabar datos en un .txt

Código PHP:
File f = new File("Resultados.txt");
                    
FileWriter linea_tx = new FileWriter(ftrue);
                    
pw = new PrintWriter(linea_tx);
                    
pw.println(texto);
                    
linea_tx.close(); 
De esto ultimo, pw hay que declararlo mas arriba? como?
tal cual está dice que "cannot find symbol varible pw

Última edición por cslbcn; 10/02/2009 a las 11:21