- <Test.java>将”e:/from.txt”里的内容读取到”e:/to.txt”
-------------------------------
import java.io.*;
class Test {
public static void main(String args[]) {
FileInputStream fis = null;
FileOutputStream fos = null;
try {
fis = new FileInputStream("e:/from.txt"); // 生成代表输入流的对象
fos = new FileOutputStream("e:/to.txt"); // 生成代表输出流的对象
byte[] buffer = new byte[100]; // 生成一个字节数组
// 调用输入流对象的read方法,读取数据
int tmp = fis.read(buffer, 0, buffer.length);
fos.write(buffer, 0, tmp);
// String s = new String (buffer);
// 调用String 对象的trim方法,将去掉该字符串的首空格和尾空格
} catch (Exception e) {
System.out.println(e);
} finally {
try {
fis.close();
fos.close();
} catch (Exception e) {
System.out.println(e);
}
}
}
}
注意:
以上两个文件的转移操作全部是在二进制状态下完成的,如果将一个文件内容读入后想要输出,需要用上面注释的字符串方法将其化成字符串输出。如果国输出流文档已有内容会被覆盖掉。