Java的文件读写操作

分享一下我老师大神的人工智能教程!零基础,通俗易懂!http://blog.csdn.net/jiangjunshow

也欢迎大家转载本篇文章。分享知识,造福人民,实现我们中华民族伟大复兴!

               

file(内存)----输入流---->【程序】----输出流---->file(内存)


当我们读写文本文件的时候,采用Reader是非常方便的,比如FileReader,InputStreamReader和BufferedReader。其中最重要的类是InputStreamReader, 它是字节转换为字符的桥梁。你可以在构造器重指定编码的方式,如果不指定的话将采用底层操作系统的默认编码方式,例如GBK等。使用FileReader读取文件:

FileReader fr = new FileReader("ming.txt");  int ch = 0while((ch = fr.read())!=-1 )   {   
     System.out.print((char)ch);   
  } 

其中read()方法返回的是读取得下个字符。当然你也可以使用read(char[] ch,int off,int length)这和处理二进制文件的时候类似。

事实上在FileReader中的方法都是从InputStreamReader中继承过来的。read()方法是比较好费时间的,如果为了提高效率我们可以使用BufferedReader对Reader进行包装,这样可以提高读取得速度,我们可以一行一行的读取文本,使用readLine()方法。

BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream("ming.txt")));
String data = null;
while((data = br.readLine())!=null)
{
System.out.println(data);
}

了解了FileReader操作使用FileWriter写文件就简单了,这里不赘述。

Eg.我的综合实例

testFile:

import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;import java.io.InputStreamReader;public class testFile /**  * @param args  */ public static void main(String[] args) {  // TODO Auto-generated method stub  // file(内存)----输入流---->【程序】----输出流---->file(内存)  File file = new File("d:/temp", "addfile.txt");  try {   file.createNewFile(); // 创建文件  } catch (IOException e) {   // TODO Auto-generated catch block   e.printStackTrace();  }  // 向文件写入内容(输出流)  String str = "亲爱的小南瓜!";  byte bt[] = new byte[1024];  bt = str.getBytes();  try {   FileOutputStream in = new FileOutputStream(file);   try {    in.write(bt, 0, bt.length);    in.close();    // boolean success=true;    // System.out.println("写入文件成功");   } catch (IOException e) {    // TODO Auto-generated catch block    e.printStackTrace();   }  } catch (FileNotFoundException e) {   // TODO Auto-generated catch block   e.printStackTrace();  }  try {   // 读取文件内容 (输入流)   FileInputStream out = new FileInputStream(file);   InputStreamReader isr = new InputStreamReader(out);   int ch = 0;   while ((ch = isr.read()) != -1) {    System.out.print((char) ch);   }  } catch (Exception e) {   // TODO: handle exception  } }}


java中多种方式读文件


//------------------参考资料---------------------------------////1、按字节读取文件内容//2、按字符读取文件内容//3、按行读取文件内容//4、随机读取文件内容import java.io.BufferedReader;import java.io.File;import java.io.FileInputStream;import java.io.FileReader;import java.io.IOException;import java.io.InputStream;import java.io.InputStreamReader;import java.io.RandomAccessFile;import java.io.Reader;public class ReadFromFile /**  * 以字节为单位读取文件,常用于读二进制文件,如图片、声音、影像等文件。  *   * @param fileName  *            文件的名  */ public static void readFileByBytes(String fileName) {  File file = new File(fileName);  InputStream in = null;  try {   System.out.println("以字节为单位读取文件内容,一次读一个字节:");   // 一次读一个字节   in = new FileInputStream(file);   int tempbyte;   while ((tempbyte = in.read()) != -1) {    System.out.write(tempbyte);   }   in.close();  } catch (IOException e) {   e.printStackTrace();   return;  }  try {   System.out.println("以字节为单位读取文件内容,一次读多个字节:");   // 一次读多个字节   byte[] tempbytes = new byte[100];   int byteread = 0;   in = new FileInputStream(fileName);   ReadFromFile.showAvailableBytes(in);   // 读入多个字节到字节数组中,byteread为一次读入的字节数   while ((byteread = in.read(tempbytes)) != -1) {    System.out.write(tempbytes, 0, byteread);   }  } catch (Exception e1) {   e1.printStackTrace();  } finally {   if (in != null) {    try {     in.close();    } catch (IOException e1) {    }   }  } } /**  * 以字符为单位读取文件,常用于读文本,数字等类型的文件  *   * @param fileName  *            文件名  */ public static void readFileByChars(String fileName) {  File file = new File(fileName);  Reader reader = null;  try {   System.out.println("以字符为单位读取文件内容,一次读一个字节:");   // 一次读一个字符   reader = new InputStreamReader(new FileInputStream(file));   int tempchar;   while ((tempchar = reader.read()) != -1) {    // 对于windows下,rn这两个字符在一起时,表示一个换行。    // 但如果这两个字符分开显示时,会换两次行。    // 因此,屏蔽掉r,或者屏蔽n。否则,将会多出很多空行。    if (((char) tempchar) != 'r') {     System.out.print((char) tempchar);    }   }   reader.close();  } catch (Exception e) {   e.printStackTrace();  }  try {   System.out.println("以字符为单位读取文件内容,一次读多个字节:");   // 一次读多个字符   char[] tempchars = new char[30];   int charread = 0;   reader = new InputStreamReader(new FileInputStream(fileName));   // 读入多个字符到字符数组中,charread为一次读取字符数   while ((charread = reader.read(tempchars)) != -1) {    // 同样屏蔽掉r不显示    if ((charread == tempchars.length)      && (tempchars[tempchars.length - 1] != 'r')) {     System.out.print(tempchars);    } else {     for (int i = 0; i < charread; i++) {      if (tempchars[i] == 'r') {       continue;      } else {       System.out.print(tempchars[i]);      }     }    }   }  } catch (Exception e1) {   e1.printStackTrace();  } finally {   if (reader != null) {    try {     reader.close();    } catch (IOException e1) {    }   }  } } /**  * 以行为单位读取文件,常用于读面向行的格式化文件  *   * @param fileName  *            文件名  */ public static void readFileByLines(String fileName) {  File file = new File(fileName);  BufferedReader reader = null;  try {   System.out.println("以行为单位读取文件内容,一次读一整行:");   reader = new BufferedReader(new FileReader(file));   String tempString = null;   int line = 1;   // 一次读入一行,直到读入null为文件结束   while ((tempString = reader.readLine()) != null) {    // 显示行号    System.out.println("line " + line + ": " + tempString);    line++;   }   reader.close();  } catch (IOException e) {   e.printStackTrace();  } finally {   if (reader != null) {    try {     reader.close();    } catch (IOException e1) {    }   }  } } /**  * 随机读取文件内容  *   * @param fileName  *            文件名  */ public static void readFileByRandomAccess(String fileName) {  RandomAccessFile randomFile = null;  try {   System.out.println("随机读取一段文件内容:");   // 打开一个随机访问文件流,按只读方式   randomFile = new RandomAccessFile(fileName, "r");   // 文件长度,字节数   long fileLength = randomFile.length();   // 读文件的起始位置   int beginIndex = (fileLength > 4) ? 4 : 0;   // 将读文件的开始位置移到beginIndex位置。   randomFile.seek(beginIndex);   byte[] bytes = new byte[10];   int byteread = 0;   // 一次读10个字节,如果文件内容不足10个字节,则读剩下的字节。   // 将一次读取的字节数赋给byteread   while ((byteread = randomFile.read(bytes)) != -1) {    System.out.write(bytes, 0, byteread);   }  } catch (IOException e) {   e.printStackTrace();  } finally {   if (randomFile != null) {    try {     randomFile.close();    } catch (IOException e1) {    }   }  } } /**  * 显示输入流中还剩的字节数  *   * @param in  */ private static void showAvailableBytes(InputStream in) {  try {   System.out.println("当前字节输入流中的字节数为:" + in.available());  } catch (IOException e) {   e.printStackTrace();  } } public static void main(String[] args) {  String fileName = "C:/temp/newTemp.txt";  ReadFromFile.readFileByBytes(fileName);  ReadFromFile.readFileByChars(fileName);  ReadFromFile.readFileByLines(fileName);  ReadFromFile.readFileByRandomAccess(fileName); }}

//二、将内容追加到文件尾部import java.io.FileWriter;import java.io.IOException;import java.io.RandomAccessFile;/** * 将内容追加到文件尾部 */public class AppendToFile /**  * A方法追加文件:使用RandomAccessFile  *   * @param fileName  *            文件名  * @param content  *            追加的内容  */ public static void appendMethodA(String fileName, String content) {  try {   // 打开一个随机访问文件流,按读写方式   RandomAccessFile randomFile = new RandomAccessFile(fileName, "rw");   // 文件长度,字节数   long fileLength = randomFile.length();   // 将写文件指针移到文件尾。   randomFile.seek(fileLength);   randomFile.writeBytes(content);   randomFile.close();  } catch (IOException e) {   e.printStackTrace();  } } /**  * B方法追加文件:使用FileWriter  *   * @param fileName  * @param content  */ public static void appendMethodB(String fileName, String content) {  try {   // 打开一个写文件器,构造函数中的第二个参数true表示以追加形式写文件   FileWriter writer = new FileWriter(fileName, true);   writer.write(content);   writer.close();  } catch (IOException e) {   e.printStackTrace();  } } public static void main(String[] args) {  String fileName = "C:/temp/newTemp.txt";  String content = "new append!";  // 按方法A追加文件  AppendToFile.appendMethodA(fileName, content);  AppendToFile.appendMethodA(fileName, "append end. n");  // 显示文件内容  ReadFromFile.readFileByLines(fileName);  // 按方法B追加文件  AppendToFile.appendMethodB(fileName, content);  AppendToFile.appendMethodB(fileName, "append end. n");  // 显示文件内容  ReadFromFile.readFileByLines(fileName); }}

 

1、判断文件是否存在,不存在创建文件

File file=new File(path+filename);     if(!file.exists())     {         try {             file.createNewFile();         } catch (IOException e) {             // TODO Auto-generated catch block             e.printStackTrace();         }     }  
 

2、判断文件夹是否存在,不存在创建文件夹

    File file =new File(path+filename);     //如果文件夹不存在则创建     if  (!file .exists())       {           file .mkdir();     }   


java 写文件的三种方法比较

import java.io.File;   import java.io.FileOutputStream;   import java.io.*;   public class FileTest {       public FileTest() {       }       public static void main(String[] args) {           FileOutputStream out = null;           FileOutputStream outSTr = null;           BufferedOutputStream Buff=null;           FileWriter fw = null;           int count=1000;//写文件行数           try {               out = new FileOutputStream(new File(“C:/add.txt”));               long begin = System.currentTimeMillis();               for (int i = 0; i < count; i++) {                   out.write(“测试java 文件操作\r\n”.getBytes());               }               out.close();               long end = System.currentTimeMillis();               System.out.println(“FileOutputStream执行耗时:” + (end - begin) + ” 豪秒”);               outSTr = new FileOutputStream(new File(“C:/add0.txt”));                Buff=new BufferedOutputStream(outSTr);               long begin0 = System.currentTimeMillis();               for (int i = 0; i < count; i++) {                   Buff.write(“测试java 文件操作\r\n”.getBytes());               }               Buff.flush();               Buff.close();               long end0 = System.currentTimeMillis();               System.out.println(“BufferedOutputStream执行耗时:” + (end0 - begin0) + ” 豪秒”);               fw = new FileWriter(“C:/add2.txt”);               long begin3 = System.currentTimeMillis();               for (int i = 0; i < count; i++) {                   fw.write(“测试java 文件操作\r\n”);               }                           fw.close();               long end3 = System.currentTimeMillis();               System.out.println(“FileWriter执行耗时:” + (end3 - begin3) + ” 豪秒”);           } catch (Exception e) {               e.printStackTrace();           }           finally {               try {                   fw.close();                   Buff.close();                   outSTr.close();                   out.close();               } catch (Exception e) {                   e.printStackTrace();               }           }       }   }


java中的getParentFile


String name = "AAAA.txt";
String lujing = "1"+"/"+"2";//定义路径
File a = new File(lujing,name);

a.getParentFile().mkdirs();    //这里如果不加getParentFile(),创建的文件夹为"1/2/AAAA.txt/"

那么,a的意义就是“1/2/AAAA.txt”。

这里a是File,但是File这个类在Java里表示的不只是文件,虽然File在英语里是文件的意思。Java里,File至少可以表示文件或文件夹(大概还有可以表示系统设备什么的,这里不考虑,只考虑文件和文件夹)。

也就是说,在“1/2/AAAA.txt”真正出现在磁盘结构里之前,它既可以表示这个文件,也可以表示这个路径的文件夹。那么,如果没有getParentFile(),直接执行a.mkdirs(),就是说,创建“1/2/AAAA.txt”代表的文件夹,也就是“1/2/AAAA.txt/”,在此之后,执行a.createNewFile(),试图创建a文件,然而以a为名的文件夹已经存在了,所以createNewFile()实际是执行失败的。你可以用System.out.println(a.createNewFile())这样来检查是不是真正创建文件成功。

所以,这里,你想要创建的是“1/2/AAAA.txt”这个文件。在创建AAAA.txt之前,必须要1/2这个目录存在。所以,要得到1/2,就要用a.getParentFile(),然后要创建它,也就是a.getParentFile().mkdirs()。在这之后,a作为文件所需要的文件夹大概会存在了(有特殊情况会无法创建的,这里不考虑),就执行a.createNewFile()创建a文件。

 

Java RandomAccessFile的使用

 

Java的RandomAccessFile提供对文件的读写功能,与普通的输入输出流不一样的是RamdomAccessFile可以任意的访问文件的任何地方。这就是“Random”的意义所在。

RandomAccessFile的对象包含一个记录指针,用于标识当前流的读写位置,这个位置可以向前移动,也可以向后移动。RandomAccessFile包含两个方法来操作文件记录指针。

long getFilePoint():记录文件指针的当前位置。

void seek(long pos):将文件记录指针定位到pos位置。

RandomAccessFile包含InputStream的三个read方法,也包含OutputStream的三个write方法。同时RandomAccessFile还包含一系列的readXxx和writeXxx方法完成输入输出。

RandomAccessFile的构造方法如下

 \

mode的值有四个

"r":以只读文方式打开指定文件。如果你写的话会有IOException。

"rw":以读写方式打开指定文件,不存在就创建新文件。

"rws":不介绍了。

"rwd":也不介绍。

/** * 往文件中依次写入3名员工的信息, * 每位员工有姓名和员工两个字段 然后按照 * 第二名,第一名,第三名的先后顺序读取员工信息 */import java.io.File;import java.io.RandomAccessFile;public class RandomAccessFileTest public static void main(String[] args) throws Exception {  Employee e1 = new Employee(23, "张三");  Employee e2 = new Employee(24, "lisi");  Employee e3 = new Employee(25, "王五");  File file = new File("employee.txt");  if (!file.exists()) {   file.createNewFile();  }  // 一个中文占两个字节 一个英文字母占一个字节  // 整形 占的字节数目 跟cpu位长有关 32位的占4个字节  RandomAccessFile randomAccessFile = new RandomAccessFile(file, "rw");  randomAccessFile.writeChars(e1.getName());  randomAccessFile.writeInt(e1.getAge());  randomAccessFile.writeChars(e2.getName());  randomAccessFile.writeInt(e2.getAge());  randomAccessFile.writeChars(e3.getName());  randomAccessFile.writeInt(e3.getAge());  randomAccessFile.close();  RandomAccessFile raf2 = new RandomAccessFile(file, "r");  raf2.skipBytes(Employee.LEN * 2 + 4);  String strName2 = "";  for (int i = 0; i < Employee.LEN; i++) {   strName2 = strName2 + raf2.readChar();  }  int age2 = raf2.readInt();  System.out.println("strName2 = " + strName2.trim());  System.out.println("age2 = " + age2);  raf2.seek(0);  String strName1 = "";  for (int i = 0; i < Employee.LEN; i++) {   strName1 = strName1 + raf2.readChar();  }  int age1 = raf2.readInt();  System.out.println("strName1 = " + strName1.trim());  System.out.println("age1 = " + age1);  raf2.skipBytes(Employee.LEN * 2 + 4);  String strName3 = "";  for (int i = 0; i < Employee.LEN; i++) {   strName3 = strName3 + raf2.readChar();  }  int age3 = raf2.readInt();  System.out.println("strName3 = " + strName3.trim());  System.out.println("age3 = " + age3); }}class Employee // 年龄 public int age; // 姓名 public String name; // 姓名的长度 public static final int LEN = 8public Employee(int age, String name) {  this.age = age;  // 对name字符长度的一个处理  if (name.length() > LEN) {   name = name.substring(0, LEN);  } else {   while (name.length() < LEN) {    name = name + "/u0000";   }  }  this.name = name; } public int getAge() {  return age; } public String getName() {  return name; }}

高效的RandomAccessFile

http://zhang-xiujiao.iteye.com/blog/1150751

主体:

 

RandomAccessFile类。其I/O性能较之其它常用开发语言的同类性能差距甚远,严重影响程序的运行效率。

开发人员迫切需要提高效率,下面分析RandomAccessFile等文件类的源代码,找出其中的症结所在,并加以改进优化,创建一个"性/价比"俱佳的随机文件访问类BufferedRandomAccessFile。

 

在改进之前先做一个基本测试:逐字节COPY一个12兆的文件(这里牵涉到读和写)。

 

耗用时间(秒)
RandomAccessFileRandomAccessFile95.848
BufferedInputStream + DataInputStreamBufferedOutputStream + DataOutputStream2.935

 

我们可以看到两者差距约32倍,RandomAccessFile也太慢了。先看看两者关键部分的源代码,对比分析,找出原因。

 

1.1.[RandomAccessFile]

 

Java代码   收藏代码
  1. public class RandomAccessFile implements DataOutput, DataInput {  
  2.     public final byte readByte() throws IOException {  
  3.         int ch = this.read();  
  4.         if (ch < 0)  
  5.             throw new EOFException();  
  6.         return (byte)(ch);  
  7.     }  
  8.     public native int read() throws IOException;   
  9.     public final void writeByte(int v) throws IOException {  
  10.         write(v);  
  11.     }   
  12.     public native void write(int b) throws IOException;   
  13. }  

 

可见,RandomAccessFile每读/写一个字节就需对磁盘进行一次I/O操作。

 

1.2.[BufferedInputStream]

 

Java代码   收藏代码
  1. public class BufferedInputStream extends FilterInputStream {  
  2.     private static int defaultBufferSize = 2048;   
  3.     protected byte buf[]; // 建立读缓存区  
  4.     public BufferedInputStream(InputStream in, int size) {  
  5.         super(in);          
  6.         if (size <= 0) {  
  7.             throw new IllegalArgumentException("Buffer size <= 0");  
  8.         }  
  9.         buf = new byte[size];  
  10.     }  
  11.     public synchronized int read() throws IOException {  
  12.         ensureOpen();  
  13.         if (pos >= count) {  
  14.             fill();  
  15.             if (pos >= count)  
  16.                 return -1;  
  17.         }  
  18.         return buf[pos++] & 0xff// 直接从BUF[]中读取  
  19.     }   
  20.     private void fill() throws IOException {  
  21.     if (markpos < 0)  
  22.         pos = 0;        /* no mark: throw away the buffer */  
  23.     else if (pos >= buf.length)  /* no room left in buffer */  
  24.         if (markpos > 0) {   /* can throw away early part of the buffer */  
  25.         int sz = pos - markpos;  
  26.         System.arraycopy(buf, markpos, buf, 0, sz);  
  27.         pos = sz;  
  28.         markpos = 0;  
  29.         } else if (buf.length >= marklimit) {  
  30.         markpos = -1;   /* buffer got too big, invalidate mark */  
  31.         pos = 0;    /* drop buffer contents */  
  32.         } else {        /* grow buffer */  
  33.         int nsz = pos * 2;  
  34.         if (nsz > marklimit)  
  35.             nsz = marklimit;  
  36.         byte nbuf[] = new byte[nsz];  
  37.         System.arraycopy(buf, 0, nbuf, 0, pos);  
  38.         buf = nbuf;  
  39.         }  
  40.     count = pos;  
  41.     int n = in.read(buf, pos, buf.length - pos);  
  42.     if (n > 0)  
  43.         count = n + pos;  
  44.     }  
  45. }  
 

1.3.[BufferedOutputStream]

 

Java代码   收藏代码
  1. public class BufferedOutputStream extends FilterOutputStream {  
  2.    protected byte buf[]; // 建立写缓存区  
  3.    public BufferedOutputStream(OutputStream out, int size) {  
  4.         super(out);  
  5.         if (size <= 0) {  
  6.             throw new IllegalArgumentException("Buffer size <= 0");  
  7.         }  
  8.         buf = new byte[size];  
  9.     }   
  10. public synchronized void write(int b) throws IOException {  
  11.         if (count >= buf.length) {  
  12.             flushBuffer();  
  13.         }  
  14.         buf[count++] = (byte)b; // 直接从BUF[]中读取  
  15.    }  
  16.    private void flushBuffer() throws IOException {  
  17.         if (count > 0) {  
  18.             out.write(buf, 0, count);  
  19.             count = 0;  
  20.         }  

    给我老师的人工智能教程打call!http://blog.csdn.net/jiangjunshow
    这里写图片描述
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值