JSP擷取當前日期時間

來源:互聯網
上載者:User

一、先看看如何取目前時間並顯示的代碼: 

------------------------------------------------ 

<% 

java.text.SimpleDateFormat formatter = newjava.text.SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); 

java.util.Date currentTime = new java.util.Date();//得到當前系統時間 

String str_date1 = formatter.format(currentTime); //將日期時間格式化 

String str_date2 = currentTime.toString(); //將Date型日期時間轉換成字串形式 

%> 

 

 

格式化成"yyyy-MM-ddHH:mm:ss"格式的日期時間:<%=str_date1%> 

未經格式化的String格式的日期時間:<%=str_date2%> 

未經格式化的Date格式的日期時間:<%=currentTime%> 

 

 

------------------------------------------------- 

頁面的輸出內容: 

格式化成"yyyy-MM-ddHH:mm:ss"格式的日期時間:2005-03-1709:55:40 

未經格式化的String格式的日期時間:Thu Mar 17 09:55:40 CST 2005 

未經格式化的Date格式的日期時間:Thu Mar 17 09:55:40 CST 2005 

 

通常我們需要的是這種格式化後的時間:2005-03-17 09:55:40。現在有這樣一個問題:“2005-03-17 09:55:40”是一個字串,有些時候我們需要在這個字串裡提取出年、月、日等的相關資訊,怎麼辦呢?看下面的代碼: 

----------------------規則的字串---------------------------------------------- 

規則的字串(年4位,月2位,日2位,中間用字元“-”分隔): 

<br>原字串為: 

<% 

String date="1989-12-30"; 

out.println(date+"<br>"); 

String year=date.substring(0,4);//取第0+1位至第4位 

String month=date.substring(5,7);//取第5+1位至第7位 

String day=date.substring(8,10);//取第8+1位至第10位 

out.println("year="+year+",month="+month+",day="+day); 

%> 

---------------------------------------------------------------------------------- 

從上面的代碼我們可以看出來:這隻能針對規則的字串(年4位,月2位,日2位),要是不規則的呢?年可能2位也可能4位,月和日可能1位也可能2位,怎麼辦?通過對上面的代碼修改,可以得到下面的通用的代碼(這個“通用”有一個前提——年月日之間必須以“-”分隔): 

----------------------不規則的字串---------------------------------------------- 

不規則的字串(年、月、日長度不一定,中間用字元“-”分隔): 

<br>原字串為: 

<% 

String date="04-05-6"; 

out.println(date+"<br>"); 

int a=date.indexOf("-");//求第一個“-”的位元 

int b=date.lastIndexOf("-");//求最後一個“-”的位元 

int len=date.length();//求字串的長度 

year=date.substring(0,a);//取第一個“-”前的字串 

month=date.substring(a+1,b);//取兩個“-”之間的字串 

day=date.substring(b+1,len);//取最後一個“-”以後的字串 

out.println("year="+year+",month="+month+",day="+day); 

%> 

 

 

 

jsp 得到當前日期與時間(2009-05-0901:24:45)標籤:jsp
時間 it  
分類:jsp-servlet 

 

<SCRIPT LANGUAGE="JavaScript">

var myDate = new Date();

    myDate.getYear();      //擷取當前年份(2位)

    myDate.getFullYear();   //擷取完整的年份(4位,1970-????)

    myDate.getMonth();     //擷取當前月份(0-11,0代表1月)

    myDate.getDate();      //擷取當前日(1-31)

    myDate.getDay();       //擷取當前星期X(0-6,0代表星期天)

    myDate.getTime();      //擷取目前時間(從1970.1.1開始的毫秒數)

    myDate.getHours();     //擷取當前小時數(0-23)

    myDate.getMinutes();    //擷取當前分鐘數(0-59)

    myDate.getSeconds();    //擷取當前秒數(0-59)

    myDate.getMilliseconds();   //擷取當前毫秒數(0-999)

    myDate.toLocaleDateString();   //擷取當前日期

    varmytime=myDate.toLocaleTimeString();    //擷取目前時間

    myDate.toLocaleString( );      //擷取日期與時間

 

if (mytime<"23:30:00")

{ alert(mytime);}

</SCRIPT>

 

<%

java.text.SimpleDateFormat formatter = newjava.text.SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

 

java.util.Date currentTime = new java.util.Date();//得到當前系統時間

 

String str_date1 = formatter.format(currentTime); //將日期時間格式化

String str_date2 = currentTime.toString(); //將Date型日期時間轉換成字串形式

%>

 

 

<TDclass="classtd"><%=str_date1%></td>

 

 

 

 on(Rollover){ 

_root.stop(); 

}on(Rollout){ 

_root.play(); 

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.