jimphei学习工作室

jimphei学习工作室

  BlogJava :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理 ::
  23 随笔 :: 0 文章 :: 1 评论 :: 0 Trackbacks
    public static void main(String[] args) {
        
// TODO 自动生成方法存根
        File f=new File("e:/jimphei");
        tree(f,
0);
    }

    
public static void tree(File f,int level)
    
{
        String strlen
="";
        
for(int i=0;i<level;i++)
        
{
            strlen
+="   ";
        }

        File[] childs
=f.listFiles();
        
for(int i=0;i<childs.length;i++)
        
{
            System.out.println(strlen
+childs[i].getName());
            
if(childs[i].isDirectory()){
                tree(childs[i],level
+1);
            }

        }

    }
posted on 2009-03-23 20:43 jimphei 阅读(68) 评论(0)  编辑  收藏

只有注册用户登录后才能发表评论。


网站导航: