打印流简述

PrintStream 和 PrintWriter

  • 打印流只有输出流,没有输入流

PrintStream

package com.ftn.printStream;

import java.io.IOException;
import java.io.PrintStream;
import java.nio.charset.StandardCharsets;

public class PrintStream_ {
    public static void main(String[] args) throws IOException {
        PrintStream out = System.out;
        //PrintStream 默认输出位置为显示器
        out.println("打印一次");
        //因为print底层使用的是write输出,所以可以直接调用write打印
        out.write("aaa".getBytes(StandardCharsets.UTF_8));

        //可以修改打印流输出的位置/设备
        //修改为 d:\m1.txt
        System.setOut(new PrintStream("d:\\m1.txt"));
        System.out.println("hello,hell");
        out.close();
    }
}

PrintWriter

package com.ftn.printStream;

import java.io.FileWriter;
import java.io.IOException;
import java.io.PrintWriter;

public class PrintWriter_ {
    public static void main(String[] args) throws IOException {
        PrintWriter printWriter = new PrintWriter(System.out);
        printWriter.print("hhh");
        //更改打印输出位置
        PrintWriter printWriter1 = new PrintWriter(new FileWriter("d:\\t1.txt"));
        printWriter1.print("hehehe");
        printWriter.close();        //必须关闭流之后才能写入数据
        printWriter1.close();       //必须关闭流之后才能写入数据
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值