编写一个Java应用程序,使用Java的输入输出流技术将FileInput.txt的内容逐行读出,每读出一行就顺序为其
2个回答
展开全部
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格式的。
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格式的。
2013-01-24
展开全部
作业 + 伸手党 路过
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询