java基础14_IO流



package java基础;
import java.io.*;
public class TestFileOutputStream {
public static void main(String[] args) {
// 在新建一个文件夹test,下面放一个文件:TestFileOutputStream.java
// 把该文件读取到内存
FileInputStream in = null;
FileOutputStream out = null;
try {
//方法1
in = new FileInputStream("D:" + File.separator + "test"+ File.separator +"TestFileOutputStream.java");
// int b = 0;
// while ((b = in.read()) != -1) {
// char c = (char)b;
// //System.out.print(c);//中文会有乱码
// }
//方法2
byte[] bytes = new byte[4096];
StringBuilder sb = new StringBuilder();//如果是单线程程序,比StringBuffer效率高
for(int n;(n=in.read(bytes))!=-1;) {//读取一些字节流到bytes里,并返回实际读取的字节数
sb.append(new String(bytes,0,n,"GBK"));//解决文件中的中文,输出乱码的情况
//把内存里的文件写入到硬盘的某个文件里,D:\test\haha.java
//haha.java目前在D:\test\下还没有,则要新建出来
out = new FileOutputStream("D:"+File.separator+"test"+File.separator+"haha.java");
out.write(bytes, 0, n);
}
//System.out.println(sb.toString());
} catch (FileNotFoundException e) {
e.printStackTrace();
System.exit(-1);
} catch (IOException e) {
e.printStackTrace();
} finally {
if(out != null) {
try {
out.flush();
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if(in != null) {
try {
in.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值