[求助]怎么样修改
import java.io.*;public class IOStreamDemo2 {
public static void main (String args[]) {
int b;
try {
BufferedInputStream in =
new BufferedInputStream(
new FileInputStream("input.txt"));
FileOutputStream out =
new FileOutputStream("output.txt",true);
while ((b=in.read()) !=-1)
out.write(b);
in.close();
out.close();
}catch(FileNotFoundException e) {
System.out.println("File Not Found.");
}catch (IOException e) {
System.out.println("IO Exception");
}finally { }
}
}
如果我要把input文件复制到别的地方要怎么修改?
谢谢帮忙!