美文网首页
I/O:读和写 及文件

I/O:读和写 及文件

作者: 吃啥呀 | 来源:发表于2018-11-13 17:45 被阅读6次

File类 输入 输出流


File类

构造方法:
File(String pathname) 
File(String parent, String child)
File(File parent, String child)
作用
查看文件属性:canRead(), isFile(), lastModified()
创建或删除目录:mkdir(),delete()
列出目录下的所有文件:list()
判断文件是否存在:exists()
重新命名文件:renameTo()

输入 输出流

InputStream
FileInputStream
OutputStream
​ FileOutputStream
Reader
FileReader
Writer
​ FileWriter

InputStream类
方法 描述
read() 将数据读入流中
skip() 跳过流中的若干字节
available() 返回当前流中的可用字节
mark() 在流中标记一个位置
reset() 返回到流中的标记位置
markSupported() 返回一个boolean值,描述流是否支持标记和复位
close() 关闭流
OutputStream类
方法 描述
write() 写数据到流
flush() 强制将被缓冲的内容写到输出
close() 关闭流
Reader与Writer类
/**
 * 本例子演示了如何用面向byte的方式 读取、写入文件
 * @author Administrator
 *
 */
public class ReadWriteFileByteDemo {
    public static int CHUNK_SIZE = 4096;

    public ReadWriteFileByteDemo() {
        // TODO Auto-generated constructor stub
    }

    public static void main(String[] args) {
        // TODO Auto-generated method stub

        try {
            copyFile("D:\\elipse\\course\\src.jpg", "D:\\elipse\\course\\dest.jpg");
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

    }

    /**
     * 复制IO流
     * @param in
     * @param out
     * @throws IOException
     */
    public static void copyIO(InputStream in, OutputStream out) throws IOException {
        byte[] buf = new byte[CHUNK_SIZE];
        /**
         * 从输入流读取内容的典型方法
         */
        int len = in.read(buf);
        while (len != -1) {
            out.write(buf, 0, len);
            len = in.read(buf);
        }
    }

    /**
     * 复制文件
     * @param fsrc
     * @param fdest
     * @throws IOException
     */
    public static void copyFile(String fsrc, String fdest) throws IOException {
        InputStream in=null;
        OutputStream out=null;
        try {
            in = new FileInputStream(fsrc);
            out = new FileOutputStream(fdest, true);
            copyIO(in, out);    
        } finally {
            close(in);
            close(out);
        }
    }
    
    /**
     * 关闭一个输入 输出流
     * @param inout
     */
    public static void close(Closeable inout) {
        if (inout != null) {
            try {
                inout.close();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
    }

}

/**
 * 本例子演示了如何使用char的方式 读取、写入文件
 * @author Administrator
 *
 */
public class ReadWriteFileCharDemo {
    public static int CHUNK_SIZE = 4096;

    public ReadWriteFileCharDemo() {
        // TODO Auto-generated constructor stub
    }

    public static void main(String[] args) {
        
        try {
            String s = readFile("D:/elipse/course/demo.txt");
            System.out.println(s);
    //          List<String> list=readLine("D:/elipse/course/red.txt");
    //          for(int i=0;i<list.size();i++) {
    //              System.out.println(list.get(i));
    //          }
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

    /**
     * 从一个文件中读取字符串
     * @param fsrc
     * @return
     * @throws IOException
     */
    public static String readFile(String fsrc) throws IOException {
        Reader reader = null;
        try {
            StringBuffer buf = new StringBuffer();          
            char[] chars = new char[CHUNK_SIZE];
            reader = new FileReader(fsrc);          
            int readed = reader.read(chars);
            while (readed != -1) {
                buf.append(chars, 0, readed);               
                readed = reader.read(chars);
            }
            return buf.toString();
        } finally {
            close(reader);
        }
    }

    /**
     * 从一个文本文件中,一次读取一行,放到list中
     * @param fsrc
     * @return
     * @throws IOException
     */
    public static List<String> readLine(String fsrc) throws IOException {
        Reader reader = null;
        LineNumberReader lineReader = null;
        try {
            reader = new FileReader(fsrc);
            lineReader = new LineNumberReader(reader);
            String line = lineReader.readLine();
            List<String> lines = new ArrayList<String>();
            while (line != null) {
                lines.add(line);
                line = lineReader.readLine();
            }
            return lines;
        } finally {
            close(lineReader);
            close(reader);
        }
    }

    /**
     * 把字符串写到文件中
     * @param fileName
     * @param content
     * @throws IOException
     */
    public void writeFile(String fileName, String content) throws IOException {
        OutputStream out = null;
        try {
            
            out = new FileOutputStream(fileName, false);
            out.write(content.getBytes());
            out.flush();
        } finally {
            close(out);
        }

    }

    /**
     * 关闭输入输入流
     * @param inout
     */
    public static void close(Closeable inout) {
        if (inout != null) {
            try {
                inout.close();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
    }
}

流有两种基本形式:输入流输出流,根据程序是作为数据流的目的端还是源端来划分。程序首先要打开一个流,才能与数据文件进行通信。

通过输入流,程序可以从数据文件读取数据,但不可向输入流中写入数据;反之,通过输出流,程序可以向数据文件中写入数据。程序与其他设备间的I/O也可以使用流,这时可将设备看作是一个数据文件。

相关文章

  • I/O:读和写 及文件

    File类 输入 输出流 File类 构造方法: 作用 输入 输出流 InputStreamFileInputSt...

  • UNIX 文件I/O

    UNIX 文件I/O 引言 介绍UNIX系统可用的文件I/O函数---打开文件、读文件、写文件等 UNIX文件I/...

  • 第十章《系统级I/O》

    Unix I/O 所有的I/O设备都被模型化为文件,因此所有的输入和输出操作都被当做对相应文件的读和写来执行,这种...

  • JavaSE进阶九 IO流一

    1,IO流的概述 IO流,什么是IO? I:Input O:Output 通过IO可以完成硬盘文件的读和写。...

  • APUE 第三章 Unbuffered文件I/O(系统调用无缓冲

    3.1 引言 本章开始讨论UNIX系统,先说明可用的文件I/O函数——打开文 件、读文件、写文件等。UNIX系统中...

  • 第三章 文件I/O

    I/O函数就是打开文件,读文件,写文件,在绝大数unix系统中只需用到5个函数open、read、write、ls...

  • Linux性能优化实战——磁盘I/O调优

    前言 本文基于文件系统和磁盘I/O工作原理,通过典型I/O问题分析,总结磁盘I/O调优的一般套路。 问题描述:文件...

  • I/O优化

    I/O基本知识 整个I/O操作由应用程序、文件系统和磁盘共同完成,应用程序将I/O命令发送到文件系统,文件系统在合...

  • 异步I/O—事件循环机制

    I/O简介 1.I/O操作:内核在进行文件I/O操作时,通过文件描述符(fd:一个整数—应用程序和内核之间的凭证)...

  • 17.Java中的IO

    1.I/O操作的目标 2.I/O的分类方法 3.读取文件和写入文件的方法 I/O操作的目标 从数据源当中读取数据,...

网友评论

      本文标题:I/O:读和写 及文件

      本文链接:https://www.haomeiwen.com/subject/fmilfqtx.html