I have a static initializer where I am creating a new File
object. When I pass in the name to it FindBugs reports a warning due to the hard-coded absolute path. How can I suppress this warning?
private static final String fileName = "/tmp/m123.txt";
static {
if (new File(fileName).exists()) {
....
}
}
You can use ENUM, I use ENUM to eliminate hardcoding of the strings/text both findbugs and pmd doesn't to show errors or warning.
Your fileName is not uppercase, hence pmd would show error of type 1 for the same. So change it to upper case