android 如何自动获取网络最新时间,并且同步到手机上
URL url=new URL("http://www.bjtime.cn");//取得资源对象
URLConnection uc=url.openConnection();//生成连接对象
uc.connect(); //发出连接
long ld=uc.getDate(); //取得网站日期时间
Date date=new Date(ld); //转换为标准时间对象这段代码用于获取准确的北京时间(也就是东八区区时)
这个为什么获取的时计算机系统时间?