时间:2015-07-22来源:雨林木风pe工具作者:佚名
在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())));可以到雨林木风u盘启动盘u盘制作工具的官网:www.ylmfpe.com 咨询客服,更多精彩内容继续关注。本文由雨林木风u盘启动盘整理发布
2018-04-18
Windows10 Redstone 5:版本17643可用2018-04-05
旧的CPU失去Linux的支持 一下子减少50万行代码2018-01-31
Win7系统如何用命令ping端口 Ping端口的方法linux的运用是特别广泛的,特别是在企业应用最多,由linux操作系统稳定强,在服务器上不逊于其它操作系统,linux就是命令多一点。而用户在操作的过程中,难免会遇到一些问题,这不,有位用户就提出linux该如何删除文件的问题,下面,小...
2018-01-08
Linux下部分软件会出现中文显示异常的问题。如Netbeans等依赖JVM虚拟机运行的软件。这是由于JVM中文显示的字体缺失的缘故。方法就是将缺失的字体添入JVM目录。1、查询JRE目录:update-alternatives --con...
2017-11-25