黑马程序员技术交流社区

标题: 文件递归出来的demo。show一下。 [打印本页]

作者: jsfjb    时间: 2012-12-18 16:43
标题: 文件递归出来的demo。show一下。
以前看书上的代码看的头都晕,把书上的代码复制到电脑上运行,竟然文件没有迭代。我都纳闷了。现在自己都能把文件递归出来了,感慨一下。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:}

作者: jsfjb    时间: 2012-12-18 16:45
顶一下自己,没有费劲就出来了感觉挺好的。哈哈哈




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2