我最亲爱的说

子非鱼,焉知鱼之乐.

导航

[JSP]获取时间

<%@ page contentType="text/html;charset=gb2312" %>
<%@ page import="java.util.*"%>
<html><head><title>ex5-5.jsp</title></head>
<body>
<h1>
<br>
<center>
<%
    Date Nowdate = new Date();
    String nowhour = String.valueOf(Nowdate.getHours());
    String nowmin = String.valueOf(Nowdate.getMinutes());
    String nowsec = String.valueOf(Nowdate.getSeconds());
    
%>
现在是北京时间:
<%out.print(nowhour);%><%out.print(nowmin);%><%out.print(nowsec);%></center></h1></body>
</html> 
    

 

posted on 2013-09-13 10:34  我最亲爱的说  阅读(227)  评论(0编辑  收藏  举报