java 字节的复制,java 字节流文件复制方法总结

1、使用字节流每次读写单个字节

1 public static void main(String[] args) throws IOException {

2 FileInputStream fis = new FileInputStream("C:\\CloudMusic\\1.mp3");

3 FileOutputStream fos = new FileOutputStream("e:\\1.mp3");

4 int len = 0;

5 while ((len = fis.read()) != -1) {

6 fos.write(len);

7 }

8 if (fos != null) {

9 fos.close();

10 }

11 if (fis != null) {

12 fis.close();

13 }

14 }

2、使用字节流每次读写多个字节

1 public static void main(String[] args) throws IOException {

2 FileInputStream fis = new FileInputStream("C:\\CloudMusic\\1.mp3");

3 FileOutputStream fos = new FileOutputStream("e:\\1.mp3");

4 byte[] b = new byte[1024];

5 int len = 0;

6 while ((len = fis.read(b)) != -1) {

7 fos.write(b,0,len);

8 }

9 if (fos != null) {

10 fos.close();

11 }

12 if (fis != null) {

13 fis.close();

14 }

15 }

3、使用字节缓冲流每次读写单个字节

1 public static void main(String[] args) throws IOException {

2 BufferedInputStream bis = new BufferedInputStream(new FileInputStream("C:\\CloudMusic\\1.mp3"));

3 BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("e:\\1.mp3"));

4 int len = 0;

5 while ((len = bis.read()) != -1) {

6 bos.write(len);

7 }

8 if (bos != null) {

9 bos.close();

10 }

11 if (bis != null) {

12 bis.close();

13 }

14 }

4、使用字节缓冲流每次读写多个字节

1 public static void main(String[] args) throws IOException {

2 BufferedInputStream bis = new BufferedInputStream(new FileInputStream("C:\\CloudMusic\\1.mp3"));

3 BufferedOutputStream bos = new BufferedOutputStream(new FileOutputStream("e:\\1.mp3"));

4 byte[] b = new byte[1024];

5 int len = 0;

6 while ((len = bis.read(b)) != -1) {

7 bos.write(b, 0, len);

8 }

9 if (bos != null) {

10 bos.close();

11 }

12 if (bis != null) {

13 bis.close();

14 }

15 }

标签:java,字节,fos,len,复制,mp3,close,new,null

来源: https://www.cnblogs.com/voidchar/p/10410278.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值