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

java _io_面向对象风格递归获得文件夹大小

时间:2019-07-23 10:05:25      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:对象   code   面向对象   exist   throw   +=   文件   sdi   路径   

public class test { private int sum; //文件夹大小 private String path; //路径 private File f; public static void main(String[]args) throws IOException { test t=new test("D:/d"); System.out.println(t.getSum()); } public test(String path) { this.path=path; this.f=new File(path); N(this.f); } public int getSum() { return this.sum; } //递归打印获得文件夹大小 private int N(File f) { if(null!=f&&f.exists()) { if(f.isFile()) //是文件才能获得大小 { sum+=f.length(); } else if(f.isDirectory()) { File[] ss=f.listFiles(); for(File r:ss) { N(r); } } } return sum; } }

java _io_面向对象风格递归获得文件夹大小

标签:对象   code   面向对象   exist   throw   +=   文件   sdi   路径   

原文地址:https://blog.51cto.com/14437184/2422510

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