
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, and any oth...
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, again, I'm new to ...
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 provides tools …
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 never seen …
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 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 longer in u...
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 Token {
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 press the review …
How to write simple lexical analyzer for java in java with token ...
Nov 14, 2017 · I've got a school project to write a simple lexical analyzer (though it isn't very simple for me) in java language for java code. Input as java code string or a file containing java code. For exa...
java - How do I analyze a .hprof file? - Stack Overflow
Oct 9, 2008 · Hmm. Perhaps you have to run Java 6, but can read a Java 5 HPROF (maybe that's how I got it to work). I know you cannot create a heap-dump from Visual VM on an app running Java 5. Will …