编写一个Java应用程序,使用Java的输入输出流技术将FileInput.txt的内容逐行读出,每读出一行就顺序为其

2024-12-20 21:55:49
推荐回答(2个)
回答1:

public class Test {
public static void main(String[] args){
File f=new File("D:/b.txt");
if(f.exists() && f.isFile()){
try {
FileInputStream input=new FileInputStream(f);
InputStreamReader reader=new InputStreamReader(input);
BufferedReader buffer=new BufferedReader(reader);
String line=null;

while((line=buffer.readLine())!=null){
System.out.println(line);
}
reader.close();
input.close();

} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
System.out.println("指定文件不存在!!!");
} catch (IOException e) {
// TODO Auto-generated catch block
System.out.println("读取文件内容出错!!!");
}
}

}
}
已运行过,没有问题,注意文件要是utf-8格式的。

回答2:

作业 + 伸手党 路过