代码参考:http://blog.sina.com.cn/s/blog_7cf112e00100vnad.html
由于项目需要统计代码注释量,故寻此代码。
由于我们需要统计的代码中,注释有多种形式,需要过滤出别人以前写的注释,只统计我们新写的注释。
旧的注释采用的注释方式有三种:
<span style="font-size:18px;">// 注释1
/*
* 注释2
*/
/* 注释3 */</span>
新写的注释有如下三种:
<span style="font-size:18px;">/*!旧的注释直接略去,不算在代码行与注释行里,修改后代码如下:
* 注释1
*/
/**
* 注释2
*/
/** 注释3 */</span>
<span style="font-size:18px;">import java.io.BufferedReader;可以修改代码存放路径和识别的文件类型,程序能扫描整个文件夹以及子文件夹。
import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
import java.util.ArrayList;
public class CodeCounter {
static long codeLines = 0;
static long commentLines = 0;
static long blankLines = 0;
static ArrayList<File> fileArray = new ArrayList<File>();
public static void main(String[] args) {
//可以统计指定目录下以及其子目录下的所有java文件中代码
File file = new File("E://worktest//");
ArrayList<File> al = getFile(file);
for (File f : al) {
// if (f.getName().matches(".*\\.java$")) // 匹配java格式的文件
// if (f.getName().matches(".*\\.xml$")) // 匹配xml格式的文件
// if (f.getName().matches(".*\\.sql$")) // 匹配sql格式的文件
// if (f.getName().matches(".*\\.properties$")) // 匹配properties格式的文件
// if (f.getName().matches(".*\\.jsp$")) // 匹配jsp格式的文件
// if (f.getName().matches(".*\\.js$")) // 匹配js格式的文件
if (f.getName().matches(".*\\.cc$")) // 匹配js格式的文件
count(f);
if (f.getName().matches(".*\\.h$")) // 匹配js格式的文件
count(f);
}
System.out.println("代码行数:" + codeLines);
System.out.println("注释行数:" + commentLines);
System.out.println("空白行数: " + blankLines);
}
// 获得目录下的文件和子目录下的文件
public static ArrayList<File> getFile(File f) {
File[] ff = f.listFiles();
for (File child : ff) {
if (child.isDirectory()) {
getFile(child);
} else
fileArray.add(child);
}
return fileArray;
}
// 统计方法
private static void count(File f) {
BufferedReader br = null;
boolean flag = false;
boolean flag2 = false;
try {
br = new BufferedReader(new FileReader(f));
String line = "";
while ((line = br.readLine()) != null) {
line = line.trim(); // 除去注释前的空格
if (line.matches("^[ ]*$")) { // 匹配空行
blankLines++;
} else if (line.startsWith("//")) { //这种注释块我不需要算作注释,而且也不需要算为代码行
} else if (line.startsWith("/**")||line.startsWith("/*!")) { //只计算这种形式的注释块
commentLines++;
flag = true;
if (line.endsWith("*/")) {
flag = false;
}
} else if (flag == true) {
commentLines++;
if (line.endsWith("*/")) {
flag = false;
}
} else if (line.startsWith("/*")) { //只计算这种形式的注释块
flag2 = true;
if (line.endsWith("*/")) {
flag2 = false;
}
} else if (flag2 == true) {
if (line.endsWith("*/")) {
flag2 = false;
}
} else {
codeLines++;
}
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (br != null) {
try {
br.close();
br = null;
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
} </span>
转载注明出处:http://blog.csdn.net/lqc1992/article/details/48262881