A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 奋发吧小白 高级黑马   /  2014-11-5 11:35  /  820 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

复制Mp3
  1. package IO流练习;
  2. import java.io.*;
  3. public class 复制MP3 {
  4.         public static void main(String[] args)throws Exception {
  5.                 copyMp3();
  6.                 System.out.println("复制完成");
  7.         }
  8.         public static void copyMp3() throws Exception
  9.         {
  10.                 BufferedInputStream bis = new BufferedInputStream(
  11.                                 new FileInputStream("D:\\1.mp3"));
  12.                 BufferedOutputStream bos = new BufferedOutputStream(
  13.                                 new FileOutputStream("D:\\001.mp3"));
  14.                 byte [] b = new byte[1024];
  15.                 int len = 0;
  16.                 while((len = bis.read(b))!=-1)
  17.                 {
  18.                         bos.write(b, 0, len);
  19.                         bos.flush();
  20.                 }
  21.                 bos.close();
  22.                 bis.close();
  23.         }
  24. }
复制代码
复制图片
  1. package IO流练习;
  2. import java.io.*;
  3. public class 复制图片 {
  4.         public static void main(String[] args)throws Exception {
  5.                 copyPic();
  6.                 System.out.println("复制完成!");
  7.         }
  8.         public static void copyPic() throws Exception
  9.         {
  10.                 BufferedInputStream bis = new BufferedInputStream(
  11.                                 new FileInputStream("D:\\1.jpg"));
  12.                 BufferedOutputStream bos = new BufferedOutputStream(
  13.                                 new FileOutputStream("D:\\001.jpg"));
  14.                 byte [] b = new byte [1024];
  15.                 int len = 0;
  16.                 while((len = bis.read(b))!=-1)
  17.                 {
  18.                         bos.write(b, 0, len);
  19.                         bos.flush();
  20.                 }
  21.                 bis.close();
  22.                 bos.close();
  23.         }
  24. }
复制代码

复制文件夹
  1. package IO流练习;
  2. import java.io.*;
  3. public class 复制文件夹 {
  4.         public static void main(String[] args) throws Exception{
  5.                 File srcDir = new File("D:\\heima");
  6.                 File disDir = new File("D:\\Copy05heima");
  7.                 if(!disDir.exists())
  8.                 {
  9.                         disDir.mkdirs();
  10.                 }
  11.                 copyFolder(srcDir,disDir);
  12.                 System.out.println("复制成功");
  13.         }
  14.         public static void copyFolder(File srcDir,File disDir) throws Exception
  15.         {
  16.                 File [] files = srcDir.listFiles();
  17.                 for (File file : files) {
  18.                         if(file.isDirectory())
  19.                         {
  20.                                 File newDir = new File(disDir+File.separator+file.getName());
  21.                                 newDir.mkdirs();
  22.                                 copyFolder(file,newDir);
  23.                         }else
  24.                         {
  25.                                 File newFile = new File(disDir+File.separator+file.getName());
  26.                                 BufferedInputStream bis = new BufferedInputStream(
  27.                                                 new FileInputStream(file));
  28.                                 BufferedOutputStream bos = new BufferedOutputStream(
  29.                                                 new FileOutputStream(newFile));
  30.                                 byte [] buf = new byte[1024];
  31.                                 int len = 0;
  32.                                 while((len = bis.read(buf))!=-1)
  33.                                 {
  34.                                         bos.write(buf, 0, len);
  35.                                         bos.flush();
  36.                                 }
  37.                                 bis.close();
  38.                                 bos.close();
  39.                         }
  40.                 }
  41.         }
  42.        
  43. }
复制代码




评分

参与人数 1黑马币 +1 收起 理由
杨佳名 + 1

查看全部评分

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马