URL urlTime=new URL("http://www.bjtime.cn");//取得资源对象
URLConnection uc=urlTime.openConnection();//生成连接对象
uc.connect(); //发出连接
long ld=uc.getDate(); //取得网站日期时间
Date date=new Date(ld); //转换为标准时间对象
在uc.getDate();处报异常,此方法是不是不能直接用?
高洛峰2017-04-17 17:33:14
URLConnection getDate方法傳回的是原始伺服器訊息發出的時間,並非標準的網路時間。 getDate方法本身不存在拋出異常。你遇到了什麼異常?