java文件读写

Posted weishao-lsv

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java文件读写相关的知识,希望对你有一定的参考价值。

IO流简单来说就是输入流和输出流主要是用来处理设备之间的数据传输

案例1采用的是字节流方式,案例2采用字符流方式;字节流和字符流之间差异很大,读者需根据自己的场景使用

 

案例1:

  采用字节流和包装流(读者可自行了解包装流,主要采用的是装饰器模式)的方式进行文件读写

public class FileCopy {
    
    public static void copyfile(File src,File res) throws Exception{
        InputStream in=new BufferedInputStream(new FileInputStream(src));
        OutputStream out=new BufferedOutputStream(new FileOutputStream(res));
         byte[] bt=new byte[1024];
        while(-1!=(in.read(bt))){
            out.write(bt, 0, bt.length);
        }
        out.flush();
        out.close();
        in.close();
    }
    
    public static void main(String[] args) {
        File src=new File("D:/tmp/test.xls");
        File res=new File("D:/tmp/b.xls");
        try {
            copyfile(src, res);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

}

 

案例2:

  采用包装流和字符流进行文件读写

public class FileCopy {
    public static void main(String[] args) throws Exception {
        BufferedReader br=new BufferedReader(
                new InputStreamReader(
                        new BufferedInputStream(
                                new FileInputStream(new File("d:/tmp/a.txt"))),"GBK"));
        
        BufferedWriter out=new BufferedWriter(
                new OutputStreamWriter(
                        new BufferedOutputStream(
                                new FileOutputStream(new File("d:/tmp/b.txt"))),"GBK"));
        String line=null;
        while(null!=(line=br.readLine())){
            out.write(line);
            out.newLine();
        }
        out.flush();
        out.close();
        br.close();
    }
}

 

以上是关于java文件读写的主要内容,如果未能解决你的问题,请参考以下文章

java中ReentrantReadWriteLock读写锁的使用

linux下c通过虚拟地址映射读写文件的代码

Android tcp/ip 读写缓冲区脱离主代码

Java itext为pdf 文件添加水印核心功能代码片段

求用java读写properties文件的代码

Java读写dbf文件