Linux用sonar取得違規(guī)數(shù)與代碼行數(shù)的方法
發(fā)表時(shí)間:2023-08-10 來(lái)源:明輝站整理相關(guān)軟件相關(guān)文章人氣:
[摘要]在Linux系統(tǒng)中sonar主要是用于管理代碼質(zhì)量,而其中兩個(gè)重要的參數(shù)就是違規(guī)數(shù)和代碼行數(shù)了。本文就來(lái)介紹一下,Linux用sonar取得違規(guī)數(shù)和代碼行數(shù)的方法。demo如下:public cla...
在Linux系統(tǒng)中sonar主要是用于管理代碼質(zhì)量,而其中兩個(gè)重要的參數(shù)就是違規(guī)數(shù)和代碼行數(shù)了。本文就來(lái)介紹一下,Linux用sonar取得違規(guī)數(shù)和代碼行數(shù)的方法。
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(“#.##”);
//創(chuàng)建Sonar
Sonar sonar = new Sonar(new HttpClient4Connector(new Host(host, username, password)));
//執(zhí)行資源請(qǐng)求
ResourceQuery query = ResourceQuery.createForMetrics(resourceKey, MEASURES_TO_GET);
query.setIncludeTrends(true);
Resource resource = sonar.find(query);
// 循環(huán)遍歷獲取“violations”, “lines”
List《Measure》 allMeasures = resource.getMeasures();
for (Measure measure : allMeasures) {
System.out.println((measure.getMetricKey() + “: ” +
df.format(measure.getValue())));
}
}
}
Linux是一套免費(fèi)使用和自由傳播的類Unix操作系統(tǒng)