java 我又长见识了

来源:互联网 发布:淘宝店怎么修改标题 编辑:程序博客网 时间:2024/04/29 20:02

1.怎么让System.out.println();打印日志

public static void main(String[] args) throws FileNotFoundException {  OutputStream os=new FileOutputStream("logs/out.txt",true); PrintStream print=new PrintStream(os);  System.setOut(print); System.out.println("hello  world");  }
这样 就会把hello world 打印到指定的文件里
这样就搞定了 ,让我们来好好研究研究这个System吧。



0 0