当我尝试使用命令行启动findbugs工具时,我收到以下错误
Exception in thread "main" java.lang.ExceptionInInitializerError
at edu.umd.cs.findbugs.DetectorFactoryCollection.getCoreResource(DetectorFactoryCollection.java:360)
at edu.umd.cs.findbugs.SystemProperties.loadPropertiesFromConfigFile(SystemProperties.java:72)
at edu.umd.cs.findbugs.SystemProperties.<clinit>(SystemProperties.java:55)
at edu.umd.cs.findbugs.Project.<clinit>(Project.java:91)
at edu.umd.cs.findbugs.FindBugsCommandLine.<init>(FindBugsCommandLine.java:59)
at edu.umd.cs.findbugs.FindBugsCommandLine.<init>(FindBugsCommandLine.java:78)
at edu.umd.cs.findbugs.gui2.GUI2CommandLine.<init>(GUI2CommandLine.java:49)
at edu.umd.cs.findbugs.gui2.Driver.<clinit>(Driver.java:47)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:164)
at edu.umd.cs.findbugs.LaunchAppropriateUI.launch(LaunchAppropriateUI.java:109)
at edu.umd.cs.findbugs.LaunchAppropriateUI.main(LaunchAppropriateUI.java:195)
Caused by: java.lang.RuntimeException: Unable to load parent plugins [edu.umd.cs.findbugs.plugins.webCloud] in order to load [edu.umd.cs.findbugs.plugins.findbugsCommunalCloud]
at edu.umd.cs.findbugs.PluginLoader.finishLazyInitialization(PluginLoader.java:265)
at edu.umd.cs.findbugs.PluginLoader.loadInitialPlugins(PluginLoader.java:1393)
at edu.umd.cs.findbugs.PluginLoader.<clinit>(PluginLoader.java:155)
... 12 more
任何帮助将不胜感激。
答案 0 :(得分:3)
你应该使用jar的绝对路径。
例如:C:\ findbugs-2.0.3-rc2&gt; java -jar ./lib/findbugs.jar
答案 1 :(得分:2)
从http://findbugs.sourceforge.net/downloads.html
下载禁用cloudplugin的findbug存档也不要忘记将%FINDBUGS_HOME%env变量设置为指向findbugs目录。