美文网首页
文件的读写

文件的读写

作者: _嘿嘿_ | 来源:发表于2018-10-23 19:02 被阅读0次

package com.imecms.compare;

import java.io.*;
import java.util.ArrayList;

public class Test {
public static void main(String[] args) {
File f = new File("E:/test.txt");
try {
if(!f.exists()){
f.createNewFile();
}
String str = readTxtFile(f);
System.out.println(str);
String linStr = "DAAAAAAA";
saveToFile(linStr,"E:/test.txt");
String str1 = readTxtFile(f);
System.out.println(str1);
}catch (Exception e){
e.printStackTrace();
}

}
public static String readTxtFile(File file) throws Exception {
    String encoding = "UTF-8";
    StringBuffer sb = new StringBuffer();
    if (file.isFile() && file.exists()) { // 判断文件是否存在
        InputStreamReader read = new InputStreamReader(new FileInputStream(
                file), encoding);// 考虑到编码格式
        BufferedReader bufferedReader = new BufferedReader(read);
        String lineTxt = null;
        while ((lineTxt = bufferedReader.readLine()) != null) {
            sb.append(lineTxt + "\r\n");
        }
        read.close();
        return sb.toString();
    } else {
        throw new Exception("找不到指定的文件:" + file);
    }
}
public static void saveToFile(String contents, String filename)
        throws IOException {
    FileOutputStream fos = null;
    try {
        fos = new FileOutputStream(filename);
        fos.write(contents.getBytes("UTF-8"));
        fos.flush();
    } finally {
        if (fos != null) {
            fos.close();
        }
    }
}

}

相关文章

  • C语言读写文件

    C语言文件读写### 标准文件读写 非标准文件读写 标准文件读写 头文件 include 打开文件 函数原型:FI...

  • 跟我一起学Python(八)

    一、IO编程 读写文件是最常见的IO操作,Python内置了读写文件的函数。文件读写的原理:在磁盘上读写文件的功能...

  • Python 学习笔记6 2018-04-13

    文件操作: 1,文件的读写操作 2,文件的各种系统操作 3,存储对象 1,文件的读写操作 读写数据: ...

  • 用Python实现磁盘IO操作全攻略,让数据流动起来!

    01 文件读写 1. 打开文件 读写文件是最常见的IO操作。Python内置了读写文件的函数,方便了文件的IO操作...

  • 文件操作导航

    文件打开与关闭文件读写文件的定位读写文件的重命名、删除文件夹的相关操作

  • python学习笔记03

    文件处理 读写文件是最常见的IO操作。Python内置了读写文件的函数,用法和C是兼容的。 读写文件前,我们先必须...

  • Python学习_IO文件操作

    在编程工作中,时常需要对各种文件进行操作。读写文件是最常见的IO编程,Python中内置了读写文件的函数。读写文件...

  • 2018-04-05

    文件与文件路径读写文件用shelve模块保存变量 1 python 读写文件 1.1 文件与文件路径 window...

  • 014.Python文件读写

    Python文件读写 1. 概述 读写文件是最常见的IO操作。Python内置了读写文件的函数,用法和C是兼容的。...

  • R数据读写

    csv文件读写 txt文件读写 读取excel文件 转成csv文件读取(逗号分隔) 专程prn文件读取(空格分隔)...

网友评论

      本文标题:文件的读写

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