Ver Mensaje Individual
  #1 (permalink)  
Antiguo 29/05/2007, 15:16
ernestobalestrini
 
Fecha de Ingreso: marzo-2007
Mensajes: 129
Antigüedad: 17 años, 10 meses
Puntos: 0
problema al guardar en txt

amigos estoy intentando guardar un arreglo en un archivo de txt pero me da la siguiente excepcion: java.lang.nullPointerException

el problema es que si coloco el inicializar me guarda nulo

Código PHP:
int j=0;
    
void cargartxt()throws Exception
    
{
        for (
j=0;j>=i;j++)
        {
            
FileWriter escribir = new FileWriter("Trashers.txt"); // PARRA ESCRIBIR EN EL ARCHIVO 
            
BufferedWriter escribirbuf = new BufferedWriter(escribir); // PARRA ESCRIBIR EN EL ARCHIVO
            
PrintWriter salida = new PrintWriter(escribirbuf);// PARRA ESCRIBIR EN EL ARCHIVO
            
salida.print(""+trashers[j].nombre+" ");
            
salida.print(""+trashers[j].fecha_nac[0]+" ");
            
salida.print(""+trashers[j].fecha_nac[1]+" ");
            
salida.print(""+trashers[j].fecha_nac[2]+" ");
            
int i=0;
            for(
i=0;i<20;i++)
            {
                
salida.print(""+trashers[0].serial[i]+"");
            }
            
salida.print(" "+trashers[0].basura+"");
            
salida.close();
        }
    }