JTextArea caixaTexto = new JTextArea();
try {
String[] arrayLinhas = null;
int i = 0;
BufferedReader br = new BufferedReader(new FileReader(diretoriaExecucao + "/" + valorSelecionado));
while(br.ready()){
String linha = br.readLine();
arrayLinhas[i] = linha;
i++;
}
caixaTexto.setText(arrayLinhas.toString()); //imprimo caixa texto
br.close();
} catch (IOException e2) {
e2.printStackTrace();
}
I have a list of which I select a file, read that file and print the output in the JTextArea text box.
Give me a null exception error on the line:
array Rows [i] = row;