統計java程式碼行數工具
package com.wanju.project001.zonghe.test;
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 {
//有效行數
private static long normalLines = 0;
//註釋行數
private static long commentLines = 0;
//空白行
private static long whiteLines = 0;
private ArrayList<File> al = new ArrayList<File>();
/**
* 遞迴找到該目錄下的所有java原始檔
* @param homeDir
*/
public void findJavaSource(File homeDir) {
if (homeDir.isFile()) {
al.add(homeDir);
return;
}
File[] f = homeDir.listFiles();
for (File child : f) {
if (child.isFile() && child.getName().matches(".*\\.java$")) {
al.add(child);
} else if (child.isDirectory()) {
findJavaSource(child);
}
}
}
public static void main(String[] str) {
CodeCounter cc = new CodeCounter();
//測試時別忘了該目錄地址
File homeDir = new File("D:\\workspace_ptc\\wanju_debug\\src");
cc.count(homeDir);
}
public void count(File homeDir) {
this.findJavaSource(homeDir);
for (File child : al) {
parse(child);
}
System.out.println("normalLines:" + normalLines);
System.out.println("commentLines:" + commentLines);
System.out.println("whiteLines:" + whiteLines);
}
private static void parse(File f) {
BufferedReader br = null;
boolean comment = false;
try {
br = new BufferedReader(new FileReader(f));
String line = "";
while ((line = br.readLine()) != null) {
line = line.trim();
if (line.matches("^[\\s&&[^\\n]]*$")) {
whiteLines++;
} else if (line.startsWith("/*") && !line.endsWith("*/")) {
commentLines++;
comment = true;
} else if (line.startsWith("/*") && line.endsWith("*/")) {
commentLines++;
} else if (true == comment) {
commentLines++;
if (line.endsWith("*/")) {
comment = false;
}
} else if (line.startsWith("//")) {
commentLines++;
} else {
normalLines++;
}
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (br != null) {
try {
br.close();
br = null;
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
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 {
//有效行數
private static long normalLines = 0;
//註釋行數
private static long commentLines = 0;
//空白行
private static long whiteLines = 0;
private ArrayList<File> al = new ArrayList<File>();
/**
* 遞迴找到該目錄下的所有java原始檔
* @param homeDir
*/
public void findJavaSource(File homeDir) {
if (homeDir.isFile()) {
al.add(homeDir);
return;
}
File[] f = homeDir.listFiles();
for (File child : f) {
if (child.isFile() && child.getName().matches(".*\\.java$")) {
al.add(child);
} else if (child.isDirectory()) {
findJavaSource(child);
}
}
}
public static void main(String[] str) {
CodeCounter cc = new CodeCounter();
//測試時別忘了該目錄地址
File homeDir = new File("D:\\workspace_ptc\\wanju_debug\\src");
cc.count(homeDir);
}
public void count(File homeDir) {
this.findJavaSource(homeDir);
for (File child : al) {
parse(child);
}
System.out.println("normalLines:" + normalLines);
System.out.println("commentLines:" + commentLines);
System.out.println("whiteLines:" + whiteLines);
}
private static void parse(File f) {
BufferedReader br = null;
boolean comment = false;
try {
br = new BufferedReader(new FileReader(f));
String line = "";
while ((line = br.readLine()) != null) {
line = line.trim();
if (line.matches("^[\\s&&[^\\n]]*$")) {
whiteLines++;
} else if (line.startsWith("/*") && !line.endsWith("*/")) {
commentLines++;
comment = true;
} else if (line.startsWith("/*") && line.endsWith("*/")) {
commentLines++;
} else if (true == comment) {
commentLines++;
if (line.endsWith("*/")) {
comment = false;
}
} else if (line.startsWith("//")) {
commentLines++;
} else {
normalLines++;
}
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} finally {
if (br != null) {
try {
br.close();
br = null;
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
}
相關文章
- 統計程式碼行數
- Ubuntu下統計專案的程式碼行數-cloc工具Ubuntu
- 統計程式碼行數簡易程式
- svn程式碼統計工具
- linux統計檔案個數及程式碼總行數Linux
- 【Lua】實現程式碼執行覆蓋率統計工具
- (Python程式設計 | 系統程式設計 | 並行系統工具 | 程式退出)Python程式設計並行
- 程式設計師快樂器之JAVA程式碼生成工具程式設計師Java
- java 統計大文字檔案的行數Java
- ArcGIS工具 - 統計工具數量
- Java程式碼工具EasyCode使用Java
- 使用Lodash工具後程式碼行數瞬間縮短...
- 盤點Linux常見的程式碼統計工具!Linux
- oracle執行java程式碼OracleJava
- java 程式碼編譯檢查工具Java編譯
- Java程式碼混淆工具入門——Allatori~Java
- Java程式執行系統命令Java
- 《程式碼統計分析工具 4.0》多國語言實現方案
- Java小程式--統計指定字串中字元 ‘a’ 出現的次數Java字串字元
- JAVA併發程式設計:執行緒池ThreadPoolExecutor原始碼分析Java程式設計執行緒thread原始碼
- 在Java程式中列印java執行時引數Java
- Java併發程式設計:Java執行緒Java程式設計執行緒
- 好程式設計師Java教程分享Java開發工具程式設計師Java
- MT碳數藏系統程式設計開發技術(程式碼示例)程式設計
- Java 函數語言程式設計Java函數程式設計
- pbootcms統計程式碼標籤(如何安裝百度統計程式碼)boot
- Python 計算程式執行多久程式碼Python
- 【python隨筆】之【多程式並行統計多個cvs檔案行數】Python並行
- 好程式設計師Java培訓分享Java程式設計師常用的工具類庫程式設計師Java
- Java程式碼審計入門篇Java
- Java 程式碼審計 — 1. ClassLoaderJava
- 谷歌開發者工具執行JavaScript程式碼谷歌JavaScript
- jexl2 執行字串Java程式碼字串Java
- SQL對資料進行按月統計或對資料進行按星期統計的例項程式碼SQL
- 如何統計專案程式碼?
- CNZZ非同步統計程式碼非同步
- oasys系統程式碼審計
- Git統計檔案的行數Git
- 從系統設計到擼程式碼?我用了這些方法和工具