(转载)JSP显示当前系统时间的四种方式

JSP显示当前系统时间的四种方式:

第一种java内置时间类实例化对象:

 

[java] view plain copy
 
  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>  
  2. <%  
  3. String path = request.getContextPath();  
  4. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";  
  5. %>  
  6.   
  7. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">  
  8. <html>  
  9.   <head>  
  10.     <base href="<%=basePath%>">  
  11.       
  12.     <title>My JSP 'time4.jsp' starting page</title>  
  13.       
  14.     <meta http-equiv="pragma" content="no-cache">  
  15.     <meta http-equiv="cache-control" content="no-cache">  
  16.     <meta http-equiv="expires" content="0">      
  17.     <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">  
  18.     <meta http-equiv="description" content="This is my page">  
  19.     <!--  
  20.     <link rel="stylesheet" type="text/css" href="styles.css">  
  21.     -->  
  22.   
  23.   </head>  
  24.     
  25.   <body>  
  26.     <%  
  27.     java.text.SimpleDateFormat simpleDateFormat = new java.text.SimpleDateFormat(    
  28.      "yyyy-MM-dd HH:mm:ss");    
  29.    java.util.Date currentTime = new java.util.Date();    
  30.    String time = simpleDateFormat.format(currentTime).toString();  
  31.    out.println("当前时间为:"+time);  
  32.      %>  
  33.        
  34.   </body>  
  35. </html>  

第二种方式使用JSP内置USEBEAN实例化时间类:

 

[java] view plain copy
 
  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>  
  2. <%  
  3. String path = request.getContextPath();  
  4. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";  
  5. %>  
  6.   
  7. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">  
  8. <html>  
  9.   <head>  
  10.     <base href="<%=basePath%>">  
  11.       
  12.     <title>显示系统时间方法一:</title>  
  13.       
  14.     <meta http-equiv="pragma" content="no-cache">  
  15.     <meta http-equiv="cache-control" content="no-cache">  
  16.     <meta http-equiv="expires" content="0">      
  17.     <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">  
  18.     <meta http-equiv="description" content="This is my page">  
  19.     <!--  
  20.     <link rel="stylesheet" type="text/css" href="styles.css">  
  21.     -->  
  22.   
  23.   </head>  
  24.     
  25.   <body>  
  26.     <jsp:useBean id="time" class="java.util.Date"/>  
  27.         现在时间:<%=time%>  
  28.   </body>  
  29. </html>  

第三种方式使用JSP USEBEAN type与beanName配对使用:

 

[java] view plain copy
 
  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>  
  2. <%  
  3. String path = request.getContextPath();  
  4. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";  
  5. %>  
  6.   
  7. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">  
  8. <html>  
  9.   <head>  
  10.     <base href="<%=basePath%>">  
  11.       
  12.     <title>My JSP 'time2-useBean-type-beanName.jsp' starting page</title>  
  13.       
  14.     <meta http-equiv="pragma" content="no-cache">  
  15.     <meta http-equiv="cache-control" content="no-cache">  
  16.     <meta http-equiv="expires" content="0">      
  17.     <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">  
  18.     <meta http-equiv="description" content="This is my page">  
  19.     <!--  
  20.     <link rel="stylesheet" type="text/css" href="styles.css">  
  21.     -->  
  22.   
  23.   </head>  
  24.     
  25.   <body>  
  26.      <jsp:useBean id="time" type="java.io.Serializable" beanName="java.util.Date"/>  
  27.         现在时间:<%=time%>  
  28.   </body>  
  29. </html>  

第四种方式使用JSP setproperty设置属性:

 

[java] view plain copy
 
  1. <%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>  
  2. <%  
  3. String path = request.getContextPath();  
  4. String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";  
  5. %>  
  6.   
  7. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">  
  8. <html>  
  9.   <head>  
  10.     <base href="<%=basePath%>">  
  11.       
  12.     <title>My JSP 'time3-setproperty.jsp' starting page</title>  
  13.       
  14.     <meta http-equiv="pragma" content="no-cache">  
  15.     <meta http-equiv="cache-control" content="no-cache">  
  16.     <meta http-equiv="expires" content="0">      
  17.     <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">  
  18.     <meta http-equiv="description" content="This is my page">  
  19.     <!--  
  20.     <link rel="stylesheet" type="text/css" href="styles.css">  
  21.     -->  
  22.   
  23.   </head>  
  24.     
  25.   <body>  
  26.     jsp:setproperty 实例<hr>  
  27.     <jsp:useBean id="time" class="java.util.Date">  
  28.         <jsp:setProperty name="time" property="hours" param="hh"/>  
  29.         <jsp:setProperty name="time" property="minutes" param="mm"/>  
  30.         <jsp:setProperty name="time" property="seconds" param="ss"/>  
  31.     </jsp:useBean>  
  32.     <br>  
  33.     设置属性后的时间:${time} }  
  34.     <br>  
  35.       
  36.   </body>  
  37. </html>  

所有代码均能直接复制到MYECLIPSE2010

 

 

版权说明

著作权归作者所有。 
商业转载请联系作者获得授权,非商业转载请注明出处。 
本文作者:Joe.Smith

发表日期:2016年9月29日 
本文链接:http://blog.csdn.net/qq_26816591/article/details/52703122
来源:CSDN 
更多内容: JSP include指令与动作的相应时间对比

 

 

posted @ 2018-03-24 11:07  血肉苦弱机械飞升  阅读(302)  评论(0编辑  收藏  举报
跟随粒子特效