码迷,mamicode.com
首页 > 其他好文 > 详细

网络时间戳

时间:2018-10-25 14:08:33      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:long   北京   日期   转换   4.0   对象   port   www   round   

获取某个网站的时间戳(网络地址)

<%@ page language=”java” import=”java.util.*” contentType=”text/html; charset=UTF-8″ pageEncoding=”UTF-8%> 
<%@ page import=”java.net.*%> <%@ page import=”java.text.*%>
<!DOCTYPE html PUBLIC “-//W3C//DTD HTML 4.01 Transitional//EN” “http://www.w3.org/TR/html4/loose.dtd”> <html> 
 <head> 
<meta http-equiv=”Content-Type” content=”text/html; charset=UTF-8″> 
 <title>时间戳</title>
 </head> 
 <body> <%! public String getbaiduTime(String weburl)
 { try { URL url = new URL(weburl); // 取得资源对象 
URLConnection uc = url.openConnection();// 生成连接对象 uc.connect(); // 发出连接 
long ld = uc.getDate(); // 读取网站日期时间 
Date date = new Date(ld); // 转换为标准时间对象 
SimpleDateFormat sdf = new SimpleDateFormat(“yyyy-MM-dd”, Locale.CHINA);// 输出北京时间 
return sdf.format(date); } 
catch (Exception e) 
{ e.printStackTrace(); } return null; } %>
<% out.print(getbaiduTime(“http://www.baidu.com”)); %>
</body>
</html>

 

网络时间戳

标签:long   北京   日期   转换   4.0   对象   port   www   round   

原文地址:https://www.cnblogs.com/atimo/p/9849073.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!