Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a Java project in Eclipse with ~10 packages and ~10 class files per package. Is there a way to determine total lines of code for the whole project from within Eclipse? I am familiar with other tools (e.g., Code Analyzer, wc, etc.) but I want to know if there is a way to do this within Eclipse (or get confirmation that there is no way to do it).

share|improve this question

4 Answers

up vote 60 down vote accepted

Here's a good metrics plugin that displays number of lines of code and much more:

http://metrics.sourceforge.net/

It says it requires Eclipse 3.1, although I imagine they mean 3.1+

Here's another metrics plugin that's been tested on Ganymede:

http://eclipse-metrics.sourceforge.net

share|improve this answer
40  
Note that metrics2.sourceforge.net states that the first plugin above (metrics.sourceforge.net) is discontinued and metric2 is intended to be a continuation. – Bert F Oct 20 '10 at 18:50

I read this some place but can't recall where (so don't credit me)...

...anyhow:

Search > File

Check off regex.

Use this expression:

\n[\s]*

Select whatever file types (*.java, *.xml, etc..) and working sets are appropriate for you.

share|improve this answer
14  
... and by check off you mean, make sure it is checked. Note that this method does not count empty lines. – Peter Ajtai Nov 12 '11 at 0:07
You may or may not have got this from here. – Cam Jackson Jan 16 '12 at 4:27
1  
This will use up a lot of memory on larger codebases, unfortunately. On my Indigo I hit 700k hits before eclipse died. Granted I only have -Xmx314M in my eclipse.ini – sandos Jan 19 '12 at 10:54
1  
This gives each file's LOC individually. not TOC – Abhishek Susarla Mar 30 '12 at 11:28
5  
As mentioned by @PeterAjtai, it does not count empty lines. However, this will: \n[^\n]* – MiniGod Jul 24 '12 at 17:10
show 1 more comment

Are you interested in counting the executable lines rather than the total file line count? If so you could try a code coverage tool such as EclEmma. As a side effect of the code coverage stats you get stats on the number of executable lines and blocks (and methods and classes). These are rolled up from the method level upwards, so you can see line counts for the packages, source roots and projects as well.

share|improve this answer

I think if you have MyEclipse, it adds a label to the Project Properties page which contains the total number of source code lines. Might not help you as MyEclipse is not free though.

Unfortunately, that wasn't enough in my case so I wrote a source analyzer to gather statistics not gathered by other solutions (for example the metrics mentioned by AlbertoPL).

share|improve this answer
Care to share it for community's use? – Gala101 May 21 '10 at 4:18
3  
@Gala101: code.google.com/p/javasourcestat – kd304 Jun 1 '10 at 12:59
excellent tool! exactly what I was looking for, thank you! – Gimbl Feb 16 '11 at 15:43

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.