Qualcuno mi sa dire dove sbaglio ???
grazie
IL PROGRAMMA
// Carico il file
FileReader textStream;
try {
textStream = new FileReader("file.txt");
} catch (FileNotFoundException ffne) {
}
if (textStream == null) {
return;
}
ERRORE IN COMPILAZIONE
variable textStream might not have been initialized
if (textStream == null) {
^
1 error
Errors compiling