美文网首页Java
9.1文件操作

9.1文件操作

作者: 孔垂云 | 来源:发表于2017-04-18 23:34 被阅读75次

java的文件操作还是非常强大的,这里主要说明几点,后面有一个详细的文件读写例子。
1、文件读写一定要确保文件打开后要关闭,而且关闭方法要写在finally中,java8出现的闭包操作也可以实现。
2、文件读写一定要明确文件编码方式,是UTF-8还是GBK,不然肯定会出错
3、文件读写分大文件读写和小文件读写,大文件读写需要用到buffer,即缓冲,小文件就无所谓了
4、java读写文件时,文件存储路径不要带中文,java对中文的支持还是差一些。

代码参照com.critc.FileReadWriteTest

public class FileReadWriteTest {
    /**
     * 创建文件夹
     *
     * @throws Exception
     */
    public void createDir() throws Exception {
        String path = "D:" + File.separator + "dir";
        File file = new File("D:\\dir");
        if (!file.exists())
            file.mkdir();
    }

    /**
     * 创建文件
     *
     * @throws Exception
     */
    public void createFile() throws Exception {
        File file = new File("D:\\dir\\test.txt");
        if (!file.exists())
            file.createNewFile();
    }

    /**
     * 删除文件
     */
    public void deleteFile() {
        File file = new File("D:\\dir\\test.txt");
        file.deleteOnExit();
        if (file.exists())
            file.delete();
    }

    /**
     * 读取文件列表
     *
     * @return
     */
    public List<String> readFile() {
        String path = "D:\\dir\\test.txt";
        File file = new File(path);
        List<String> list = new ArrayList<String>();
        BufferedReader reader = null;
        try {
            if (file.exists()) {
                reader = new BufferedReader(new InputStreamReader(new FileInputStream(path), "GBK"));
                String tempString = null;
                while ((tempString = reader.readLine()) != null) {
                    list.add(tempString);
                }
                reader.close();
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (reader != null) {
                try {
                    reader.close();
                } catch (IOException e1) {
                    e1.printStackTrace();
                }
            }
        }
        return list;
    }

    /**
     * 写文件
     */
    public void writeFile() {
        String path = "D:\\dir\\test.txt";
        FileOutputStream fileOutputStream = null;
        try {
            fileOutputStream = new FileOutputStream(path);
            OutputStreamWriter osw = new OutputStreamWriter(fileOutputStream, "GBK");
            String fileContent = "测试\r\n20160720\r\n";
            osw.write(fileContent);
            osw.flush();
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            try {
                fileOutputStream.close();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }

    public static void main(String[] args) throws Exception {
        FileReadWriteTest fileReadWrite = new FileReadWriteTest();
        fileReadWrite.createDir();
        fileReadWrite.createFile();
//        fileReadWrite.deleteFile();

        fileReadWrite.writeFile();
        List<String> list = fileReadWrite.readFile();
        for (String str : list) {
            System.out.println("文件内容:" + str);
        }
    }
}

源码下载

本例子详细源码

相关文章

  • 数据团Python_9. Python下的文件读写操作

    9. Python下的文件读写操作 9.1 文件对象的声明及基本操作 另一种数据格式:文件 / 文档 文件的界定:...

  • 9.1文件操作

    java的文件操作还是非常强大的,这里主要说明几点,后面有一个详细的文件读写例子。1、文件读写一定要确保文件打开后...

  • 9.1 文件存储

    Android文件的操作模式 文件的相关操作方法(在内存) 注:openFileInput/ouput打开的都是a...

  • c++ 积累

    c++读写文件 写文件 读文件 sudo ln -s /usr/local/cuda-9.1 /usr/local...

  • 文件操作

    文件操作 目标 文件操作的作用 文件的基本操作打开读写关闭 文件备份 文件和文件夹的操作 一. 文件操作的作用 思...

  • 文件和目录处理相关

    文件和目录处理相关 题: 考点:文件操作/写入操作; 延伸:目录操作函数,其他文件操作; 文件读写操作 文件系统函...

  • 09-文件操作

    一、文件操作流程 a.普通文件操作流程: 打开文件 操作文件 关闭文件 b. json文件操作流程: open(文...

  • VBS文件操作

    VBS文件操作'操作文本文件,操作fso对象(文件对象操作) --------------------------...

  • 第9章 Kotlin与Java互操作(Interoperabil

    第9章 Kotlin与Java互操作(Interoperability) 9.1 使用工具互相转换9.1.1 将 ...

  • 文件操作

    文件操作:打开文件、读写文件、操作文件内容 写入文件操作:(把大象装入冰箱)1.打开文件 ...

网友评论

    本文标题:9.1文件操作

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