系统屋 - 系统光盘下载网站!

当前位置:首页 > 系统教程 > Linux教程 > 详细页面

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

时间:2023-02-04来源:系统屋作者:zhijie

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

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

  demo如下:

  public class SonarDemo {

  static String host = “http://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())));

  }

  }

  }

 1/2    1 2 下一页 尾页
分享到:

相关信息

  • Linux如何使用Eclipse搭建Android开发环境

    Eclipse是一个常用的Android开发工具,使用使用Eclipse开发Android,要先安装好环境。本文就来介绍一下使用Eclipse开发Android如何安装环境。...

    2023-02-04

  • UNIX如何设置用户ID位?

    在Linux系统中每一个进程都有好几个用户ID位,这些用户ID位怎么设置关系到文件访问的权限。本文就来以UNIX为例,简单介绍一下UNIX如何设置用户ID位。...

    2023-02-04

评论

系统教程栏目

栏目热门教程

人气教程排行

站长推荐

热门系统下载

公众号