码迷,mamicode.com
首页 > 其他好文 > 详细

重定向输出流练习 ToLog

时间:2014-07-22 23:12:54      阅读:300      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   color   os   

mamicode.com,码迷
public class ToLog {

    public static void main(String[] args) throws Exception {
        //准备日志文件
        File f = new File("log.txt");
        if(!f.exists()){
            f.createNewFile();
        }
        
        
        //设置输出流
        PrintStream out = System.out;
        PrintStream ps = new PrintStream(f);
        System.setOut(ps);
        
        //写入数据
        String s = "This is a test sentence.";
        System.out.println(s);
        
        //复原输出流
        System.setOut(out);
        ps.close();
    }

}
mamicode.com,码迷

 

重定向输出流练习 ToLog,码迷,mamicode.com

重定向输出流练习 ToLog

标签:style   blog   http   java   color   os   

原文地址:http://www.cnblogs.com/mycome/p/3700026.html

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