Java实现本地读写文件

教程目录

0x00 教程内容
  1. 写本地文件
  2. 读本地文件
0x01 写本地文件
1. 完整代码

a. 代码

package com.shaonaiyi.local;

import java.io.File;
import java.io.FileOutputStream;

/**
 * Java实现本地写文件
 */
public class WriteFile {

    public static void main(String[] args) throws Exception{

        String path = "/Users/shaonaiyi/datas/tmp/hello.txt";
        //win系统
//        String path = "c:\\hello.txt";
        File file = new File(path);

        String content = "hello,shaonaiyi.\n";
        FileOutputStream fileOutputStream = new FileOutputStream(file);
        fileOutputStream.write(content.getBytes());

        fileOutputStream.close();

    }

}
0x02 读本地文件
1. 完整代码

a. 代码

package com.shaonaiyi.local;

import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.InputStreamReader;

/**
 * Java实现本地读文件
 */
public class ReadFile {

    public static void main(String[] args) throws Exception{

        String path = "/Users/shaonaiyi/datas/tmp/hello.txt";
        //win系统
//        String path = "c:\\hello.txt";
        FileInputStream fileInputStream = new FileInputStream(path);

        BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(fileInputStream));

        String line = null;

        while ((line = bufferedReader.readLine()) != null) {
            System.out.println(line);
        }

        fileInputStream.close();

    }
}
0xFF 总结
  1. 请与HDFS的读写做个比较:
    IntelliJ IDEA实现Hadoop读写HDFS文件(非Maven、离线版)
    Java API实现HDFS的相关操作

作者简介:邵奈一
全栈工程师、市场洞察者、专栏编辑
公众号、微博、CSDN邵奈一
福利:
邵奈一的技术博客导航

上一篇:重写Codeigniter URL以删除index.php


下一篇:如何在URL中不使用.php的情况下进入php页面