二十三章——相应路径下的代码统计

Posted 缘来狠狂

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二十三章——相应路径下的代码统计相关的知识,希望对你有一定的参考价值。

这里运用了流等知识写了一个小工具,可以统计某个路径下的代码的行数:

package com.maya.hanqi.coder;

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 Integer code = 0;
    private static Integer codeComments = 0;
    private static Integer codeBlank = 0;
    
    public static void main(String[] args) {
        File file = new File("E:\\EclipseSpace\\JavaWorkPlace\\JavaWeb_TestJDBC\\src\\com\\hanqi");
        factFiles(file);
        System.out.println("代码行数" + code);
        System.out.println("空白行数" + codeBlank);
        System.out.println("注释行数" + codeComments);
    }
    
    public static void factFiles(File file) {
        BufferedReader br = null;
        String s = null;
        
        if(file.isDirectory()) {
            File[] files = file.listFiles();
            for(File f : files) {
                factFiles(f);
            }
        } else {
            try {
                br = new BufferedReader(new FileReader(file));
                boolean comm = false;
                while((s = br.readLine()) != null) {
                    if(s.startsWith("/*") && s.endsWith("*/")) {
                        codeComments++;
                    } else if(s.trim().startsWith("//")) {
                        codeComments++;
                    } else if(s.startsWith("/*") && !s.endsWith("*/")) {
                        codeComments++;
                        comm = true;
                    } else if(!s.startsWith("/*") && s.endsWith("*/")) {
                        codeComments++;
                        comm = false;
                    } else if(comm) {
                        codeComments++;
                    } else if(s.trim().length() < 1) {
                        codeBlank++;
                    } else {
                        code++;
                    }
                }
                br.close();
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }
}

 

以上是关于二十三章——相应路径下的代码统计的主要内容,如果未能解决你的问题,请参考以下文章

实战:第二十三章:接入第三方api访问连接超时,httpclient请求超时问题

实战:第二十三章:接入第三方api访问连接超时,httpclient请求超时问题

WPF学习第二十三章 列表控件

第二十三章:使用存储过程

JavaEE基础(二十三)/递归

《Android源代码设计模式解析与实战》读书笔记(二十三)