java获取网络时间
摘要:
try { URL url = new URL("http://www.bjtime.cn");// 取得资源对象 URLConnection uc = url.openConnection();// 生成连接对象 uc.connect(); // 发出连接 long ld = uc.getDate(); // 取得网站日期时间 Date date = new Date(ld); // 转换为标准时间对象 Calendar calendar = Calendar.getInstance(); calendar.setTime(date); int... 阅读全文
posted @ 2013-01-03 01:01 雨渐渐 阅读(722) 评论(0) 推荐(0) 编辑