About 381,000 results
Open links in new tab
  1. 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...

  2. 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 ...

  3. 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.

  4. 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 …

  5. 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 …

  6. 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...

  7. 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 {

  8. java - Code complexity analysis tools beyond cyclomatic complexity ...

    0 The static analysis tools you already use are pretty standard. If you're using Eclipse, try looking here for more code analysis tools. Emma provides analysis of code coverage, though this is really for testing.

  9. 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 …

  10. 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 corner …