[code]
public static void main(String[] args) throws IOException {
FileInputStream fi= new FileInputStream("Input.txt");
FileOutputStream fo= new FileOutputStream("Output.txt");
int f;
while((f=fi.read())!=-1)
fo.write(f);
fi.close();
fo.close();
}
如果说Input.txt文件中有7行文字,我怎么只把前三行Copy到Output.txt中
是要判断字符是不是\n吗,如果是,那么\n代表几个字符,如果第一行的文字中有\n的话,怎么办 |
|