可以使用Java的File類來讀取當前路徑下的文件。以下是一個簡單的示例代碼:
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class ReadFile {
public static void main(String[] args) {
File file = new File(".");
try {
Scanner scanner = new Scanner(file);
while (scanner.hasNextLine()) {
String line = scanner.nextLine();
System.out.println(line);
}
scanner.close();
} catch (FileNotFoundException e) {
System.out.println("File not found: " + file.getAbsolutePath());
}
}
}
在上面的代碼中,我們首先創建一個File對象,將當前路徑作為參數傳入。然后使用Scanner類來讀取文件內容,并打印每一行。如果文件不存在,則會捕獲FileNotFoundException并輸出錯誤信息。
需要注意的是,這里使用的是相對路徑“.”表示當前路徑,你也可以使用絕對路徑或者其他相對路徑來讀取指定文件。