标签:style blog io color sp for java on 文件
final static void showAllFiles(File dir) throws Exception{ File[] fs = dir.listFiles(); for(int i=0; i<fs.length; i++){ if(fs[i].isFile()){ System.out.println(fs[i].getAbsolutePath()); getWidth(fs[i].getAbsolutePath()); }else{ try{ showAllFiles(fs[i]); }catch(Exception e){} } } }
标签:style blog io color sp for java on 文件
原文地址:http://www.cnblogs.com/zhuangjixiang/p/4167288.html