关于代码中空白、注释等字符的统计(正则表达式的使用)

本文介绍了一个简单的Java程序,用于统计指定目录下所有Java文件中的普通行数、空白行数及注释行数。该程序通过遍历指定路径下的所有文件,并使用正则表达式来判断每一行的内容类型。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

public class test {
static int normalLine = 0;
static int whiteLine = 0;
static int commentLine = 0;

public static void main(String[] args) {
File f = new File("E:\\java\\myworkspace\\game\\src");
File[] l = f.listFiles();
/*
* for (int i = 0; i < l.length; ++i) { if
* (l[i].getName().matches(".*\\.java$")) { parse(f); } }
*/
for (File child : l) {
System.out.println(child.getName());
if (child.getName().matches(".*\\.java$")) {
parse(child);
}
}
System.out.println("normalLine共有:" + normalLine);
System.out.println("whitelLine共有:" + whiteLine);
System.out.println("commentLine共有:" + commentLine);

}

private static void parse(File f) {
BufferedReader buf = null;
boolean isComment = false;
try {
buf = new BufferedReader(new FileReader(f));
String line = "";
while ((line = buf.readLine()) != null) {
line = line.trim();
if (line.matches("^[\\s&&[^\\n]]*$")) {
++whiteLine;
} else if (line.startsWith("/*") && line.endsWith("*/")) {
++commentLine;
} else if (line.startsWith("/*") && !line.endsWith("*/")) {
++commentLine;
isComment = true;
} else if (true == isComment) {
++commentLine;
if (line.endsWith("*/")) {
isComment = false;
}

} else if (line.startsWith("//")) {
++commentLine;
} else
++normalLine;
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值