gpt4 book ai didi

java - java中如何计算网站的响应时间

转载 作者:行者123 更新时间:2023-12-02 07:41:01 29 4
gpt4 key购买 nike

我正在尝试构建一个网站监控系统。我需要计算网站响应所需的时间或总加载时间。

最佳答案

如果你想计算http请求和响应之间的往返,你可以使用 apache http components 。这曾经被称为 apache http 客户端。

这是我用来发出请求的一些示例代码。您可以只获取请求之前和之后的时间戳。

    HttpClient httpclient = new DefaultHttpClient();
URIBuilder builder = new URIBuilder();
URI uri = null;
HttpEntity entity = null;
InputStream inputStream = null;
JSONObject jsonObject = null;
URL url = this.getClass().getClassLoader().getResource("json" + File.separator + "newInstall.json");
try {
String json = FileUtil.readFile(url.getPath());
builder.setScheme("http").setHost(host).setPort(8080).setPath(basePath + authResource)
.setParameter("sig", "sig").setParameter("params", json);
uri = builder.build();
log.info("uri: {}", uri);
HttpGet httpget = new HttpGet(uri);
HttpResponse response = httpclient.execute(httpget);
entity = response.getEntity();
if (entity != null) {
inputStream = entity.getContent();
String jsonString = IOUtils.toString(inputStream, "UTF-8");
jsonObject = new JSONObject(jsonString);
log.info("auth response: {}", jsonString);
}
} catch (Exception e) {
log.error("error", e);
}finally {
if(inputStream != null) {
try {
inputStream.close();
}catch(Exception ex) {
log.error("error closing input stream", ex);
}
}
}

关于java - java中如何计算网站的响应时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11594684/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com