当前位置:首页 > 全部子站 > IT > 思科认证

Java中对文件的读写操作之比较

来源:长理培训发布时间:2017-12-22 09:54:51

 百度广告

Java 对文件进行读写操作的例子很多,让初学者感到十分困惑,我觉得有必要将各种方法进行
一.在 JDK 1.0 中,通常是用 InputStream & OutputStream 这两个基类来进行读写操作的。
OutputStream 中我们有 FileOutputStream 这个对象。

用FileInputStream 来读取数据的常用方法是:
DataInputStream in = new DataInputStream(fstream);
完整代码见 Example 1。

用FileOutputStream 来写入数据的常用方法是:
PrintStream p = new PrintStream( out );
完整代码见 Example 2。


JDK1.1中的 InputStream & OutputStream 可以对文件或二进制文件进行操作。

用FileReader 来读取文件的常用方法是:
BufferedReader br = new BufferedReader(fr); 
完整代码见 Example 3。

用 FileWriter 来写入文件的常用方法是:
PrintWriter out = new PrintWriter(fw);  
入数据或会自动开一新行。写完后要记得 用out.close() 关闭输出,用fw.close() 关闭文件。  

-------------------------------------------------------------- following is the source code of examples------------------------------------------------------

Example 1:
// Demonstrates FileInputStream and DataInputStream

class FileInputDemo {
  // args.length is equivalent to argc in C
   try {
    FileInputStream fstream = new FileInputStream(args[0]);
    DataInputStream in = new DataInputStream(fstream);
    while (in.available() !=0) {
     System.out.println (in.readLine());
    in.close();
    System.err.println("File input error");
  }
   System.out.println("Invalid parameters");
}

Example 2:
// Demonstration of FileOutputStream and PrintStream classes

class FileOutputDemo 
  public static void main(String args)  {       
  PrintStream p; // declare a print stream object

try {
   out = new FileOutputStream("myfile.txt");
   p = new PrintStream( out );
   p.close();
   System.err.println ("Error writing to file");
  }

Example 3:
// User FileReader in JDK1.1 to read a file 

class FileReadTest {   
  FileReadTest t = new FileReadTest();

  void readMyFile() { 
  int recCount = 0; 
FileReader fr = new FileReader("mydata.txt");
    record = new String();
    recCount++;
}
fr.close(); 
    System.out.println("Uh oh, got an IOException error!");
   }
  

Example 4:
// User FileWriter in JDK1.1 to writer a file 

class FileWriteTest {   
  FileWriteTest t = new FileWriteTest();

  void WriteMyFile() { 
FileWriter fw = new FileWriter("mydata.txt");
out.print("hi,this will be wirte into the file!");  
fw.close();
    System.out.println("Uh oh, got an IOException error!");
   }

责编:罗莉

发表评论(共0条评论)
请自觉遵守互联网相关政策法规,评论内容只代表网友观点,发表审核后显示!

国家电网校园招聘考试直播课程通关班

  • 讲师:刘萍萍 / 谢楠
  • 课时:160h
  • 价格 4580

特色双名师解密新课程高频考点,送国家电网教材讲义,助力一次通关

配套通关班送国网在线题库一套

课程专业名称
讲师
课时
查看课程

国家电网招聘考试录播视频课程

  • 讲师:崔莹莹 / 刘萍萍
  • 课时:180h
  • 价格 3580

特色解密新课程高频考点,免费学习,助力一次通关

配套全套国网视频课程免费学习

课程专业名称
讲师
课时
查看课程
在线题库
面授课程更多>>
图书商城更多>>
在线报名
  • 报考专业:
    *(必填)
  • 姓名:
    *(必填)
  • 手机号码:
    *(必填)
返回顶部