系统之家 - 系统光盘下载网站!

当前位置:系统之家 > 系统教程 > Linux用sonar获取违规数和代码行数

Linux用sonar获取违规数和代码行数的方法

时间:2015-07-22 13:59:10 作者:zhijie 来源:系统之家 1. 扫描二维码随时看资讯 2. 请使用手机浏览器访问: https://m.xitongzhijia.net/xtjc/20150722/53510.html 手机查看 评论

  在Linux系统中sonar主要是用于管理代码质量,而其中两个重要的参数就是违规数和代码行数了。本文就来介绍一下,Linux用sonar取得违规数和代码行数的方法。

Linux用sonar获取违规数和代码行数的方法

  demo如下:

  public class SonarDemo {

  static String host = “https://xxx:9000”;

  static String username = “xxx”;

  static String password = “xxx”;

  static String resourceKey = “org.codehaus.sonar:sonar-ws-client”;

  static String[] MEASURES_TO_GET = new String[] { “violations”, “lines” };

  public static void main(String[] args) {

  DecimalFormat df = new DecimalFormat(“#.##”);

  //创建Sonar

  Sonar sonar = new Sonar(new HttpClient4Connector(new Host(host, username, password)));

  //执行资源请求

  ResourceQuery query = ResourceQuery.createForMetrics(resourceKey, MEASURES_TO_GET);

  query.setIncludeTrends(true);

  Resource resource = sonar.find(query);

  // 循环遍历获取“violations”, “lines”

  List《Measure》 allMeasures = resource.getMeasures();

  for (Measure measure : allMeasures) {

  System.out.println((measure.getMetricKey() + “: ” +

  df.format(measure.getValue())));

  }

  }

  }

  pom文件dependency如下:

  《dependency》

  《groupId》org.codehaus.sonar《/groupId》

  《artifactId》sonar-ws-client《/artifactId》

  《!-- 推荐使用和SonarQube server相同的版本--》

  《version》4.3《/version》

  《/dependency》

  《dependency》

  《groupId》org.apache.httpcomponents《/groupId》

  《artifactId》httpclient《/artifactId》

  《version》4.3.4《/version》

  《/dependency》

  以上就是Linux用sonar取得违规数和代码行数的方法了,取得违规数和代码行数之后,就可以综合分析,然后得出一段程序代码的质量了。

发表评论

0

没有更多评论了

评论就这些咯,让大家也知道你的独特见解

立即评论

以上留言仅代表用户个人观点,不代表系统之家立场

其他版本软件

热门教程

人气教程排行

Linux系统推荐

扫码关注
扫码关注

扫码关注 官方交流群 软件收录