Cho mình hỏi mình có 1 chương trình đọc dữ liệu từ file trong java như sau:
import java.io.*;
import java.util.*;
public class IO{
public static void main(String[] args) throws FileNotFoundException {
Scanner input = new Scanner(new File("data.txt"));
int n = input.nextInt();
System.out.print(n);
input.close();
}
}
thì báo lỗi thế này ạ
Exception in thread "main" java.io.FileNotFoundException: data.txt (The system cannot find the file specified)
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.util.Scanner.<init>(Scanner.java:611)
at ptit.nhu.IO.main(IO.java:8)
Lỗi này do đâu vậy ạ!