码迷,mamicode.com
首页 > 数据库 > 详细

Myeclipse2014 Findbug和Checkstyle安装说明

时间:2016-06-08 10:51:05      阅读:449      评论:0      收藏:0      [点我收藏+]

标签:下载地址   software   features   update   下一步   

Checkstyle 下载地址

https://sourceforge.net/projects/eclipse-cs/?source=typ_redirect


技术分享


技术分享


技术分享


输入 :(Checkstyle) http://eclipse-cs.sourceforge.net/update 或 (Findbug)http://findbugs.cs.umd.edu/eclipse


技术分享



技术分享


只勾选第一项 Checkstyle下一步,安装完成后重启


右键单击项目--Activate Checkstyle 执行样式检查

技术分享



技术分享



技术分享


来自网络的方法:


方法一:


1.Eclipse中,选择Help->Software Updates->Find and Install


2.选择 Search for new features to install 选择Next

 

3.选择 New Remote Site


4.输入更新地址

http://eclipse-cs.sourceforge.net/update


5. 安装后重启即可

 

方法二:


1.下载eclipse插件


http://sourceforge.net/projects/eclipse-cs/


下载后,把里面的两个文件夹plugins和 features下面的文件分别拷贝到eclipse目录下面对应的plugins和features目录


2.如果你就这样直接启动eclipse 可能会出现ClassNotFoundExceptions 等错误,所以必须在启动eclipse的时候加上一个参数 -clean. 这样eclipse就可以更新它当前安装的许多插件信息

比如你得eclipse在d盘 那么就是 d:\eclipse\eclipse.exe -clean 

 

checkStyle 使用


选中工程,右键选择checkstyle->check code with checkstyle,检查错误即可


Checkstyle的结果输出


序号      输出内容意义

1 Type is missing a javadoc commentClass  缺少类型说明

2“{” should be on the previous line “{” 应该位于前一行

3Methos is missing a javadoc comment方法前面缺少javadoc注释

4Expected @throws tag for “Exception”在注释中希望有@throws的说明

5“.” Is preceeded with whitespace “.” 前面不能有空格

6“.” Is followed by whitespace“.” 后面不能有空格

7“=” is not preceeded with whitespace“=” 前面缺少空格

8“=” is not followed with whitespace“=” 后面缺少空格

9“}” should be on the same line“}” 应该与下条语句位于同一行

10Unused @param tag for “unused”没有参数“unused”,不需注释

11Variable “CA” missing javadoc变量“CA”缺少javadoc注释

12Line longer than 80characters行长度超过80

13Line contains a tab character行含有”tab” 字符

14Redundant “Public” modifier冗余的“public” modifier

15Final modifier out of order with the JSL suggestionFinal modifier的顺序错误

16Avoid using the “.*” form of importImport格式避免使用“.*”

17Redundant import from the same package从同一个包中Import内容

18Unused import-java.util.listImport进来的java.util.list没有被使用

19Duplicate import to line 13重复Import同一个内容

20Import from illegal package从非法包中 Import内容

21“while” construct must use “{}”“while” 语句缺少“{}”

22Variable “sTest1” must be private and have accessor method变量“sTest1”应该是private的,并且有调用它的方法

23Variable “ABC” must match pattern “^[a-z][a-zA-Z0-9]*$”变量“ABC”不符合命名规则“^[a-z][a-zA-Z0-9]*$”

24“(” is followed by whitespace“(” 后面不能有空格 25“)” is proceeded by whitespace“)” 前面不能有空格

25 - ‘STATIC_INIT‘ should be separated from previous statement.  应该与前面的语句空一行

26 - ‘static initialization‘ have incorrect indentation level 4, expected level should be 2.








本文出自 “媳妇的美好宣言” 博客,请务必保留此出处http://unimme.blog.51cto.com/3453733/1787188

Myeclipse2014 Findbug和Checkstyle安装说明

标签:下载地址   software   features   update   下一步   

原文地址:http://unimme.blog.51cto.com/3453733/1787188

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!