码迷,mamicode.com
首页 > 编程语言 > 详细

Java输出控制台信息到文件中

时间:2019-08-21 09:39:45      阅读:307      评论:0      收藏:0      [点我收藏+]

标签:输出   throw   文件中   port   color   bsp   stat   put   style   

import java.io.File;
import java.io.IOException;
import java.io.FileOutputStream;
import java.io.PrintStream; 

public class B {
    public static void main(String[] args)throws IOException {
        File f=new File("e://out.txt");
        FileOutputStream fileOutputStream = new FileOutputStream(f);
        PrintStream printStream = new PrintStream(fileOutputStream);
        System.setOut(printStream);
        System.out.println("默认输出到了文件 out.txt");
        

    }
}

 

Java输出控制台信息到文件中

标签:输出   throw   文件中   port   color   bsp   stat   put   style   

原文地址:https://www.cnblogs.com/anningkang/p/11386632.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!