怎样用JAVA实现模拟HTTP请求,得到服务器的响应时间等参数
1个回答
展开全部
是利用网页抓取目前时间???
public String date() {
String date = null;
try {
URL url = new URL("https://www.google.com.tw");
URLConnection uc;
uc = url.openConnection();
uc.connect();
long time = uc.getDate();
Date d = new Date(time);
date=new SimpleDateFormat("yyyyMMddHHmmss").format(d);
} catch (IOException e) {
e.printStackTrace();
}
return date;
}
你要的是这个吗???
public String date() {
String date = null;
try {
URL url = new URL("https://www.google.com.tw");
URLConnection uc;
uc = url.openConnection();
uc.connect();
long time = uc.getDate();
Date d = new Date(time);
date=new SimpleDateFormat("yyyyMMddHHmmss").format(d);
} catch (IOException e) {
e.printStackTrace();
}
return date;
}
你要的是这个吗???
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询