我正在编写一个脚本来获取 URL 的 TTFB。此 getResponseCode 方法为我提供了 URL 的状态代码。建立连接后,我可以使用什么方法或公式来获取 TTFB?
HttpURLConnection 连接
try {
URL url = new URL('www.xyx.com')
connection = (HttpURLConnection)url.openConnection()
connection.setRequestMethod("GET")
connection.connect()
println(connection.getResponseCode())
}
catch(Exception ex) {
return 0
}
finally {
connection.disconnect()
}