1
我有以下這些標準輸入和輸出重定向到文件java代碼:如何重置java中的標準輸入和輸出?
FileInputStream fin=new FileInputStream("In.txt");
System.setIn(fin); //Standard input will be taken from file In.txt
FileOutputStream fout=new FileOutputStream("Out.txt");
PrintStream p=new PrintStream(fout);
System.setOut(p); //Standard output of the program will be written to file Out.txt
現在執行練琴操作後,我想重置IO。即程序應該再次接受來自鍵盤的輸入並在屏幕上輸出打印輸出。有沒有任何代碼?請幫助
你可以「保存」標準輸出/變量,然後恢復他們設置文件流的方式 –