import java.io.FileNotFoundException;
import java.io.PrintStream;
public class no4 {
public static void main(String[] args){
try{
PrintStream out=System.out;
PrintStream ps=new PrintStream("./log.txt");
System.setOut(ps);
int age=18;
System.out.println("年龄变量成功定义,初始值为18");
String sex="女";
System.out.println("性别成功定义,初始值为女");
String info="这是个"+sex+"孩子,应该有"+age+"岁了";
System.out.println("整合两个变量为info字符串变量,结果为:\n"+info);
System.setOut(out);
System.out.println("程序运行完毕,请查看日志文件");
}catch(FileNotFoundException e){
e.printStackTrace();
}
}
}
今天又学到一个重定义向输出流实现程序,真的很高兴!!!每天学点东西,相信积少成多总有一天我会成为编程高手的。。。嘿嘿!!!