码迷,mamicode.com
首页 > 编程语言 > 详细

JAVA_Math_and_File

时间:2015-04-28 22:44:12      阅读:264      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

 

技术分享

 

技术分享

 

技术分享

 

 1 import java.io.*;
 2 
 3 public class FileList {
 4     public static void main (String[] args){
 5         File f = new File("d:/A");
 6         System.out.println(f.getName());
 7         tree(f,1);
 8     }
 9     
10     private static void tree(File f,int level) {
11         File[] childs= f.listFiles();
12         for(int i = 0; i < childs.length; i++){
13             for(int j = 0; j < level; j++){
14                 System.out.print("    ");
15             }
16             System.out.println(childs[i].getName());
17             if(childs[i].isDirectory()){
18                 tree(childs[i],level + 1);
19             }
20         }
21         
22     }
23 }

 

JAVA_Math_and_File

标签:

原文地址:http://www.cnblogs.com/roger-h/p/4464050.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!