<pre code_snippet_id="432698" snippet_file_name="blog_20140722_1_3232278" name="code" class="java"><pre name="code" class="java">public static void main(String[] args) throws Exception {
TimeZone.setDefault(TimeZone.getTimeZone("GMT+8")); // 时区设置
URL url=new URL("http://www.bjtime.cn");//取得资源对象
URLConnection uc=url.openConnection();//生成连接对象
uc.connect(); //发出连接
long ld=uc.getDate(); //取得网站日期时间(时间戳)
Date date=new Date(ld); //转换为标准时间对象
//分别取得时间中的小时,分钟和秒,并输出
System.out.print(date.getHours()+"时"+date.getMinutes()+"分"+date.getSeconds()+"秒");
}
【Java】从网络获取北京时间
最新推荐文章于 2025-01-09 19:04:22 发布