Saludos..
Este error ya me está volviendo loco, ahora trato de almacenar una linea de file.txt en queue y me vuelve a arrojar java.lang.NullPointerException.
anteriormente me salia por no inicializar el queue... pero ahora que tengo q inicializar ???
public static class Queue {
String input_line = new String();
}
public static Queue []queue=new Queue[100];
public static void main(String[] args) throws IOException {
try {
// Leer Codigo Fuente:
BufferedReader in = new BufferedReader(
new FileReader("C:/File.txt"));
queue[1].input_line = in.readLine();//LINEA CON ERROR!!!!
System.out.println(queue[1].input_line);
}
catch (IOException e) {
// Handle FileNotFoundException, etc. here
}
}
gracias de antemano.