正在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())));
}
}
}
相关文章