简单的IO流---文档内容转移

  • <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);
			}
		}
	}
}



注意:

以上两个文件的转移操作全部是在二进制状态下完成的,如果将一个文件内容读入后想要输出,需要用上面注释的字符串方法将其化成字符串输出。如果国输出流文档已有内容会被覆盖掉。


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值