原文:分享非常有用的Java程序 (关键代码) (二)---列出文件和目录 File dir = new File("directoryName"); String[] children = dir.list(); if (children == null) { // Either dir does not exist or is not a directory } else { for (int i=0; i < children.length; i++) { // Get f…
这个功能相当好,自动在Solution Explorer中展开并定位到当前代码所在的文件,免得自己找位置要找很久. 设置方法: tool>>options>>projects and solutions>> 勾上track active item in solution explorer>>OK 保存即可 中文版: 工具-选项-项目和解决方案-常规-在解决方案资源管理器中跟踪活动项(C)…