真·浅谈System.setOut()

java中我们熟悉的输出System.out.println()只能将数据输出到控制台上,那么我们像要将数据输出到背的地方时该怎么办?

System.setOut()来了。

System.out是 System 类中名为 out 的 static PrintStream 变量,这个变量包含 final 修饰符,因此可以直接为其赋予新值。而System 类包含了一个可以执行此操作的特殊方法:setOut(PrintStream stream)。

要使用System.setOut()之前,我们必须创建一个收集数据的对象ByteArrayOutputStream,来盛放我们要改变输出的内容。

这是一个特殊的类,它是一个动态(可调整大小的)数组,并实现 OutputStream 接口(可以近似的堪称数组和OutputStream之间的适配器)。

那么具体该怎么样操作呢?

如下:

import java.io.*;

public class Solution {
    public static TestString testString = new TestString();

    public static void main(String[] args) throws  IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        String name = reader.readLine();
        FileOutputStream fox = new FileOutputStream(name);
          //创建特殊的变量保存当前的PrintStream;
        PrintStream consoleStream = System.out;
        //创建盛放数据的特殊类对象,即动态数组
        ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
        //创建PrintStream类的适配器
        PrintStream stream = new PrintStream(outputStream);
        //将文件写入要输出的文件fox中
        System.setOut(new PrintStream(fox));
        //调用对之前更改一无所知的函数方法
        testString.printSomething();
        //将一切恢复原状
        System.setOut(consoleStream);
       
        reader.read();
        fox.flush();
        fox.close();

    }

    public static class TestString {
        public void printSomething() {
            System.out.println("这是要输出的文件内容");
        }
    }
}


评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

timi先生

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值