java-统计源代码有效行数(简单版)

本文介绍了一种方法用于统计Java文件中有效行的数量,排除空行和多行注释。

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

题目:

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

package org.sh.line;

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

public class CountingLines {
		private boolean isAnnotation(String line){
			if(line==null||"".equals(line)){
				return false;
			}
			return line.startsWith("//")||(line.startsWith("/*")&&line.endsWith("*/"));
		}
		
		public int getValidJavaLines(String filename){
			if(filename==null){
				return 0;
			}
			FileReader fr = null;
			BufferedReader reader = null;
			int count =0;
			try {
				fr = new FileReader(filename);
			} catch (FileNotFoundException e) {
				e.printStackTrace();
			}
			reader = new BufferedReader(fr);
			String line = null;
			try {
				while((line = reader.readLine())!=null){
					line = line.trim();
					if(!line.isEmpty()&&!isAnnotation(line)){
						count++;
					}
				}
			} catch (IOException e) {
				e.printStackTrace();
			}finally{
				try {
					reader.close();
					fr.close();
				} catch (IOException e) {
					e.printStackTrace();
				}
			}
			
			return count;
		}
		public static void main(String[] args) {
			String filePath="D://workspaces//chinatravel//src//org//chi//dao//IChProxy//IChAdminProxy.java";
			CountingLines cl = new CountingLines();
			int sumLines = cl.getValidJavaLines(filePath);
			System.out.println(sumLines);
		}
}


评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值