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

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© jsfjb 中级黑马   /  2012-12-18 16:43  /  1061 人查看  /  1 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

以前看书上的代码看的头都晕,把书上的代码复制到电脑上运行,竟然文件没有迭代。我都纳闷了。现在自己都能把文件递归出来了,感慨一下。show一下代码。
哈哈哈
  1. import java.io.File;


  2. public class FileDemo {

  3.         /**
  4.          * @param args
  5.          */
  6.         public static void main(String[] args) {
  7.                 // TODO Auto-generated method stub
  8.                 File f = new File("E:\\文件");
  9.                 int count = 0;
  10.                 dirtest(f,count);

  11.         }
  12.        
  13.         public static void dirtest(File f,int count){
  14.                 count++;
  15.                 StringBuffer sb = new StringBuffer();
  16.                 for(int i=0;i<count-1;i++){
  17.                         sb.append("|  ");
  18.                 }
  19.                 sb.append("|--");
  20.                 File[] f2 = f.listFiles();
  21.                 for(File f3 : f2){
  22.                         System.out.print(sb.toString());
  23.                         if(f3.isDirectory()){
  24.                                 System.out.println(f3);
  25.                                 dirtest(f3,count);
  26.                         }else{
  27.                                 System.out.println(f3);
  28.                         }
  29.                 }
  30.         }
  31. }
复制代码
哈哈哈{:soso_e113:}{:soso_e113:}{:soso_e151:}

1 个回复

倒序浏览
顶一下自己,没有费劲就出来了感觉挺好的。哈哈哈
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马