자기가 쓴 자바 코드 통계 도구

한때 유행 하면 서 이 간단 한 코드 통계 프로그램 을 써 서 자신의 최근 업 무량 을 통계 할 수 있 었 다.현재 자바 파일 통계 만 지원 합 니 다. 다른 파일 을 통계 하려 면 일치 하 는 글 을 써 서 가입 하면 ok 입 니 다.
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>();

	/**
	 *                    java     
	 * 
	 * @author NumbCoder
	 */

	public static void main(String[] args) {
		File file = new File("F:\\test");

		ArrayList<File> al = getFile(file);
		for (File f : al) {
			if (f.getName().matches(".*\\.java$")) //   java     
				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;
		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("//")) {
					commentLines++;
				} else if (line.startsWith("/*") && !line.endsWith("*/")) {
					commentLines++;
					flag = true;
				} else if (line.startsWith("/*") && line.endsWith("*/")) {
					commentLines++;
				} else if (flag == true) {
					commentLines++;
					if (line.endsWith("*/")) {
						flag = 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();
				}
			}
		}
	}
}

좋은 웹페이지 즐겨찾기