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();
}
}
}java
今天又學到一個重定義向輸出流實現程序,真的很高興!!!天天學點東西,相信聚沙成塔總有一天我會成爲編程高手的。。。嘿嘿!!!編程