标签: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