Java 各种IO模板

用惯了python给我开好的with语法糖来读写文件,现在一下子转成Java还真的有点不适应
晚上做了个Java的IO板子,以后方便查阅

import java.io.*;
// import com.sun.tools.sjavac.server.SysInfo;

public class JavaIO
{
    public static void main(String[] args) throws IOException{
        // inputReader();
        // txtReader();
        // txtWriter();
    }
	//从命令行里里读数据
    public static void inputReader() throws IOException{
        String c;
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        System.out.println("输入字符直到按下q推出");
        while(true){
            c = br.readLine();
            if (!c.equals("q")){
                System.out.println(c);
                continue;
            }
            else{
                break;
            }
        }
    }
	//txt文件读取
    public static void txtReader() throws IOException{
        String pathName = "D:/province.txt";
        File file = new File(pathName);
        InputStreamReader reader = new InputStreamReader(new FileInputStream(file));
        BufferedReader br = new BufferedReader(reader);
        String line;
        line = br.readLine();
        while(line != null){
            System.out.println(line);
            line = br.readLine();
        }
    }
	//txt文件写入
    public static void txtWriter() throws IOException{
        File file = new File("D:/javaWriterTest.txt");
        file.createNewFile();
        BufferedWriter bw = new BufferedWriter(new FileWriter(file));
        bw.append("我是谁?\r\n");
        bw.append("bushidao1\r\n");
        bw.flush();
        bw.append("鬼知道你是谁");
        bw.close();
    }
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值