android 获取网络时间

获取实时网络时间


				URL url;
				try {
					url = new URL("http://www.baidu.com");
					URLConnection uc = url.openConnection();// 生成连接对象
					uc.connect(); // 发出连接
					long ld = uc.getDate(); // 取得网站日期时间
					Date date = new Date(ld); // 转换为标准时间对象
					// 分别取得时间中的小时,分钟和秒,并输出
					Log.d("multicast",
							date + ", " + date.getHours() + "时" + date.getMinutes()
									+ "分" + date.getSeconds() + "秒");
				} catch (MalformedURLException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}// 取得资源对象
				catch (IOException e) {
					// TODO Auto-generated catch block
					e.printStackTrace();
				}


你可能感兴趣的:(android)