
What code analysis tools do you use for your Java projects?
What code analysis tools do you use on your Java projects? I am interested in all kinds static code analysis tools (FindBugs, PMD, and any others) code coverage tools (Cobertura, Emma, …
java - Making a lexical Analyzer - Stack Overflow
Here's a simple lexical analyzer, written in Java, for a subset of a Scheme-like language, that I wrote after seeing this question. I think the code is relatively easy to understand even if you've …
Static Analysis tool recommendation for Java? - Stack Overflow
Sep 19, 2008 · Being vaguely familiar with the Java world I was googling for a static analysis tool that would also was intelligent enough to fix the issues it finds. I ran at CodePro tool but, …
How to find a Java Memory Leak - Stack Overflow
0 As most of us use Eclipse already for writing code, Why not use the Memory Analyser Tool (MAT) in Eclipse. It works great. The Eclipse MAT is a set of plug-ins for the Eclipse IDE which …
How to find unused/dead code in java projects [closed]
What tools do you use to find unused/dead code in large java projects? Our product has been in development for some years, and it is getting very hard to manually detect code that is no …
lexer - Lexical Analyser In Java - Stack Overflow
Mar 29, 2017 · I have been trying to write a simple lexical analyzer in java . The File Token.java looks as follows : import java.util.regex.Matcher; import java.util.regex.Pattern; public enum …
Cannot start Eclipse Memory Analyzer (MAT) - Stack Overflow
Jul 17, 2020 · 1 If using MacOS, make sure you have JVM 11 or above installed and add the following line to MemoryAnalyzer.ini by replacing the JAVA_HOME variable.
How can I analyze a heap dump in IntelliJ? (memory leak)
86 I have generated a heap dump from my java application which has been running for some days with the jmap tool -> this results in a large binary heap dump file. How can I perform …
java - Perform code analysis in IntelliJ IDEA - Stack Overflow
Jun 23, 2015 · I checked the option 'Perform code analysis'. If I press commit, the code analysis starts, and when its finished i get the following dialog to view the results of the analysis: If I …
java - How to use IntelliJ IDEA to find all unused code ... - Stack ...
Dec 27, 2022 · 433 When I am in a .java file, the unused code is usually grayed out or has a green underline saying this code will probably (probably because of some weird JNI/Reflection …