I know I've used the feature in the past, but I have no idea how I did this before. It must be something simple, right?
问题:
回答1:
The Statistic plugin worked for me.
To install it from Intellij:
File - Settings - Plugins - Browse repositories... Find it on the list and double-click on it.
Open statistics window from:
View -> Tool Windows -> Statistic
回答2:
Quick and dirty way is to do a global search for '\n'
. You can filter it any way you like on file extensions etc.
Ctrl-Shift-F -> Text to find = '\n'
-> Find.
Edit: And 'regular expression' has to be checked.
回答3:
In the past I have used the excellently named MetricsReloaded plugin to get this information.
You can install it from the JetBrains repository.
Once installed, access via: Analyze -> Calculate Metrics...
回答4:
Just like Neil said:
Ctrl-Shift-F -> Text to find =
'\n'
-> Find.
With only one improvement, if you enter "\n+"
, you can search for non-empty lines
If lines with only whitespace can be considered empty too, then you can use the regex "(\s*\n\s*)+"
to not count them.
回答5:
Although it is not an IntelliJ option, you could use a simple Bash command (if your operating system is Linux/Unix). Go to your source directory and type:
find . -type f -name *.java | xargs cat | wc -l
回答6:
Statistic plugins works fine!
Here is a quick case:
- Ctrl+Shift+A and serach for "Statistic" to open the panel.
- You will see panel as the screenshot and then click
Refresh
for whole project or select your project or file andRefresh on selection
for only selection.
回答7:
now 2 versions of metricsreloaded available. One supported on v9 and v10 isavailable here http://plugins.intellij.net/plugin/?idea&id=93
回答8:
You can to use Count Lines of Code (CLOC)
On Settings
-> External Tools
add a new tool
- Name: Count Lines of Code
- Group: Statistics
- Program: path/to/cloc
- Parameters: $ProjectFileDir$ or $FileParentDir$
回答9:
To find all including empty lines of code try @Neil's solution:
Open Find in Path (Ctrl+Shift+F)
Search for the following regular expression: \n'
For lines with at least one character use following expression:
(.+)\n
For lines with at least one word character or digit use following expression:
`(.*)([\w\d]+)(.*)\n`
Notice: But the last line of file is just counted if you have a line break after it.