可以使用以下步驟來使用FileReader讀取txt文件:
完整的示例代碼如下所示:
import java.io.FileReader;
import java.io.IOException;
public class FileReaderExample {
public static void main(String[] args) {
FileReader reader = null;
try {
reader = new FileReader("path/to/file.txt");
char[] buffer = new char[1024];
int length;
while ((length = reader.read(buffer)) != -1) {
System.out.println(buffer);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (reader != null) {
reader.close();
}
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
請將"文件路徑"替換為實際的txt文件路徑。