这两天看了看马士兵老师讲的正则表达式的视频,里面有个统计代码量的例子,觉得挺有用的,看完之后自己写了一遍,代码非常类似,但是确实是自己不看视频重新写的,而且有改动,为了尊重原创,故写了此段话。下面直接上代码。
import java.io.BufferedReader;
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
public class CodeCounter {
private static int commentLines = 0;
private static int codeLines = 0;
private static int whiteLines = 0;
public static void main(String []args){
File file = new File(args[0]);
if(!file.exists()){
System.out.println("文件或文件夹不存在,请重新输入");
return;
}
if(file.isDirectory()){
File[] files = file.listFiles();
if(files != null && files.length >0){
for(File f : files){
if(f.getName().matches("[a-zA-Z_$]\\w*\\.java"))
printCodeInfo(f);
}
}
}else{
if(file.getName().matches("[a-zA-Z_$]\\w*\\.java"))
printCodeInfo(file);
}
}
private static void printCodeInfo(File file){
boolean flag = false;
try {
BufferedReader br = new BufferedReader(new FileReader(file));
String line = "";
try {
while((line = br.readLine()) != null){
if(line.matches("\\s*")){
whiteLines ++;
}else if(line.matches("\\s*/.*(?!\\*/$)")){
commentLines ++;
flag = true;
}else if(line.matches("\\s*.*\\*/")){
commentLines ++;
flag = false;
}else if(flag == true){
commentLines ++;
}else if(line.matches("\\s//.*")){
commentLines ++;
}else{
codeLines ++;
}
}
} catch (IOException e) {
e.printStackTrace();
}
} catch (FileNotFoundException e) {
e.printStackTrace();
}
System.out.println(file.getAbsolutePath() + ":");
System.out.println("空行: " + whiteLines + " 行");
System.out.println("注释行:" + commentLines + " 行");
System.out.println("代码:: " + codeLines + " 行");
}
}
写得比较粗糙,不过实现了主要功能,我觉得大家如果有兴趣的话,可以做一些扩展,比如让用户输入文件或文件夹路径(不是用参数的形式),或者写到配置文件中,再好点的话可以做个UI或者web界面,由于我是想练习正则表达式,就不那些功能了。
刚学正则表达式,希望我们可以互相讨论。