java中的IO操作

这部分内容比较容易忘记 所以写在这里省的下次再去找了,先来看张图,主要有字符流和字节流:
I/O流的分类

以下是一个边读边写的流的具体使用:

public static void main(String[] args) {
    // TODO Auto-generated method stub
    FileInputStream flin = null;
    FileOutputStream fout = null;

    File file = new File("f:1.txt");
    if (!file.exists()) {
        try {
            file.createNewFile();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }
    try {
        flin = new FileInputStream(
                "E:/User/QrCode/MVP_Java/src/com/zxj/mvp/Login.java");
        fout = new FileOutputStream(file);

        // 方法一:缓存流大小一次读完
        byte[] temp = new byte[flin.available()];
        flin.read(temp);
        System.out.println(new String(temp, "utf-8"));
        fout.write(temp);

        // 方法二:指定缓存大小
        // int line = -1;
        // // 一次读多个字节
        // byte[] tmp = new byte[32 * 1024];
        // // 读入多个字节到字节数组中,line为一次读入的字节数
        // while ((line = flin.read(tmp)) != -1) {
        // System.out.println(new String(tmp, "UTF-8"));
        // fout.write(tmp);
        // }

        // 方法三:逐个字符读取
        // while ((line = flin.read( )) != -1) {
        // fout.write(line);
        // }
        System.out.println("finished!");
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } finally {

        if (fout != null) {
            try {
                fout.close();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }

        if (flin != null) {
            try {
                flin.close();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }

    }

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值