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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

:lol把自己电脑里的教学视频名称全部汇总了


  1. /*
  2. 将文件夹中的文件名称存入txt文件中
  3. */
  4. import java.util.*;
  5. import java.io.*;
  6. class MovFileTest
  7. {
  8.         public static void main(String[] args)
  9.         {
  10.                 File dir = new File("D:\\Program Files (x86)\\教学视屏");
  11.                 List<File> list = new ArrayList<File>();
  12.                 toArrayList(dir,list);
  13.                 File file = new File(dir,"教学视频汇总.txt");
  14.                 toText(list,file);
  15.         }
  16.         public static void toArrayList(File dir,List<File> list)
  17.         {
  18.                 File[] file = dir.listFiles();
  19.                 for(File f:file)
  20.                 {
  21.                         if(f.isDirectory())
  22.                                 toArrayList(f,list);
  23.                         else
  24.                         {
  25.                                 String name = f.getName();
  26.                                 if(name.endsWith(".avi")||name.endsWith(".mp4")||name.endsWith(".rmvb")||name.endsWith(".mkv")||name.endsWith(".flv")||name.endsWith(".wmv"))
  27.                                         list.add(f);
  28.                         }
  29.                 }
  30.         }
  31.         public static void toText(List<File> list,File dir)
  32.         {
  33.                 BufferedWriter bw =null;
  34.                 int count=list.size();
  35.                 try
  36.                 {
  37.                         bw = new BufferedWriter(new FileWriter(dir));
  38.                         bw.write("共计"+count+"部影片");
  39.                         bw.newLine();
  40.                         for(File f :list)
  41.                         {
  42.                                 String path=f.getAbsolutePath();
  43.                                 //String name=f.getName();
  44.                                 bw.write(path);
  45.                                 bw.newLine();
  46.                                 bw.flush();
  47.                         }
  48.                        
  49.                 }
  50.                 catch (IOException io)
  51.                 {
  52.                         throw new RuntimeException("出错");
  53.                 }
  54.                 finally
  55.                 {
  56.                         try
  57.                         {
  58.                                 if(bw!=null)
  59.                                         bw.close();
  60.                         }
  61.                         catch (IOException io)
  62.                         {
  63.                                 throw new RuntimeException("关闭资源出错!");
  64.                         }
  65.                 }
  66.         }
  67. }
复制代码



点评

厉害!  发表于 2015-4-24 16:06

评分

参与人数 1技术分 +2 收起 理由
lwj123 + 2

查看全部评分

10 个回复

倒序浏览
楼主牛……
回复 使用道具 举报

跟毕老师学的
回复 使用道具 举报 1 0
写的不错
回复 使用道具 举报

这是我学java 以来真正感觉到了他的用处了,谢谢了:lol
回复 使用道具 举报
现学现用啊 不错啊
回复 使用道具 举报
不错,值得学习
回复 使用道具 举报
现学现卖,不错不错
回复 使用道具 举报
rmvb  mkv 格式的电影会不会也被放进去? :D

点评

会啊,26行有条件  发表于 2015-4-28 14:39
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马