Eclipse中的Checkstyle错误 - 无法实例化Tab字符

Ste*_*erg 11 java eclipse checkstyle

在尝试使用checkstyle构建项目时,今天遇到此错误.这适用于我办公室的其他人,但我不想再重新安装Eclipse.知道这个错误究竟意味着什么吗?

Errors occurred during the build.
 Errors running builder 'Checkstyle Builder' on project 'myproject'.
  cannot initialize module TreeWalker - Unable to instantiate TabCharacter
  cannot initialize module TreeWalker - Unable to instantiate TabCharacter
 cannot initialize module TreeWalker - Unable to instantiate TabCharacter
 cannot initialize module TreeWalker - Unable to instantiate TabCharacter
Run Code Online (Sandbox Code Playgroud)

我正在收集它与标签字符有关但没有其他的东西.

更新:Eclipse版本为3.5,Checkstyle为5.0.0.200906281855-final.

(Java是jdk 1.6.0_10)

Von*_*onC 16

如此错误中提到的,Checkstyle插件版本5.0.0.200906281855:

Checkstyle 5的发行说明指出我们使用的某些模块和检查不向后兼容.
例如,模块TabCharacter不再出现在v5中(被替换FileTabCharacter),因此无法工作.
检查FileLength不需要语法树,因此不再是父级TreeWalker.

这意味着您的问题可能是在eclipse配置中自动更新Checkstyle插件.