统计代码有效行

一、统计一个Java文件的有效行数。
1、有效不包括空行
2、不考虑代码见有多行注释的情况

import java.io.BufferedReader;  
import java.io.File;  
import java.io.FileNotFoundException;  
import java.io.FileReader;  
import java.io.IOException;  

/** 
 * 代码行数统计 
 */  
public class StatisticCodeLines {  

    public static int normalLines = 0;  //有效程序行数  
    public static int whiteLines = 0;   //空白行数  
    public static int commentLines = 0; //注释行数  

    public static void main(String[] args) throws IOException{  

        File file = new File("D://WorkPlace//eclipse//StudioProject//YouthMake//app//src//main//java");  
        if (file.exists()) {  
            statistic(file);  
        }  
        System.out.println("总有效代码行数: " + normalLines);  
        System.out.println("总空白行数:" + whiteLines);  
        System.out.println("总注释行数:" + commentLines);  
        System.out.println("总行数:" + (normalLines + whiteLines + commentLines));  
    }  

    private static void statistic(File file) throws IOException {  

        if (file.isDirectory()) {  
            File[] files = file.listFiles();  
            for (int i = 0; i < files.length; i++) {  
                statistic(files[i]);  
            }  

        }  
        if (file.isFile()) {  
            //统计扩展名为java的文件  
            if(file.getName().matches(".*\\.java")){  
                parse(file);  
            }  
        }  
    }  

    public static void parse(File file) {  
        BufferedReader br = null;  
        // 判断此行是否为注释行  
        boolean comment = false;  
        int temp_whiteLines = 0;  
        int temp_commentLines = 0;  
        int temp_normalLines = 0;  

        try {  
            br = new BufferedReader(new FileReader(file));  
            String line = "";  
            while ((line = br.readLine()) != null) {  
                line = line.trim();  
                if (line.matches("^[//s&&[^//n]]*$")) {  
                    // 空行  
                    whiteLines++;  
                    temp_whiteLines++;  
                } else if (line.startsWith("/*") && !line.endsWith("*/")) {  
                    // 判断此行为"/*"开头的注释行  
                    commentLines++;  
                    comment = true;  
                } else if (comment == true && !line.endsWith("*/")) {  
                    // 为多行注释中的一行(不是开头和结尾)  
                    commentLines++;  
                    temp_commentLines++;  
                } else if (comment == true && line.endsWith("*/")) {  
                    // 为多行注释的结束行  
                    commentLines++;  
                    temp_commentLines++;  
                    comment = false;  
                } else if (line.startsWith("//")) {  
                    // 单行注释行  
                    commentLines++;  
                    temp_commentLines++;  
                } else {  
                    // 正常代码行  
                    normalLines++;  
                    temp_normalLines++;  
                }  
            }  

            System.out.println("有效行数" + temp_normalLines +   
                             " ,空白行数" + temp_whiteLines +   
                             " ,注释行数" + temp_commentLines +   
                             " ,总行数" + (temp_normalLines + temp_whiteLines + temp_commentLines) +   
                             "     " + file.getName());  

        } catch (FileNotFoundException e) {  
            e.printStackTrace();  
        } catch (IOException e) {  
            e.printStackTrace();  
        } finally {  
            if (br != null) {  
                try {  
                    br.close();  
                    br = null;  
                } catch (IOException e) {  
                    e.printStackTrace();  
                }  
            }  
        }  
    }  

}

1.读取一个文件使用BufferedReader.
2.
^ 正则开头
正则结尾  
[\s&&[^\n]]* 是空格但不是换行,  
0个或多个  
\n 最后匹配一个空格  
^[\s&&[^\n]]*\n
全行0或多个空格,
并且以换行结束(即空白行)

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值