Oi gente!
Ao rodar o seguinte codigo ocorre um FileNoFoundExceptio, mas o arquivo ja criei com mesmo nome e extensao (arquivo.txt) que vem no endereceo como argumento do FileInputStream dentro do mesmo pacote que está a minha classe
Como posso resolver isso gente?
public class TestaEntrada {
public static void main(String[] args) throws IOException {
InputStream inputStream = new FileInputStream("arquivo.txt");
InputStreamReader inputStreamReader = new InputStreamReader(inputStream);
BufferedReader bufferedReader = new BufferedReader(inputStreamReader);
String readLine = bufferedReader.readLine();
while(readLine != null){
System.out.println(readLine);
readLine = bufferedReader.readLine();
}
bufferedReader.close();
}
}
Exception:
Exception in thread "main" java.io.FileNotFoundException: arquivo.txt (O sistema não conseguiu localizar o ficheiro especificado)
at java.io.FileInputStream.open0(Native Method)
at java.io.FileInputStream.open(FileInputStream.java:195)
at java.io.FileInputStream.<init>(FileInputStream.java:138)
at java.io.FileInputStream.<init>(FileInputStream.java:93)
at br.com.caelum.javaio.programa.TestaEntrada.main(TestaEntrada.java:13)