天天看點

JAVA中擷取目前系統時間

一. 擷取目前系統時間和日期并格式化輸出:

import java.util.Date;

import java.text.SimpleDateFormat;

public class NowString {

public static void main(String[] args) { 

SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");//設定日期格式

System.out.println(df.format(new Date()));// new Date()為擷取目前系統時間

}

二. 在資料庫裡的日期隻以年-月-日的方式輸出,可以用下面兩種方法:

1、用convert()轉化函數:

String sqlst = "select convert(varchar(10),bookDate,126) as convertBookDate from roomBook where bookDate between '2007-4-10' and '2007-4-25'";

System.out.println(rs.getString("convertBookDate"));

2、利用SimpleDateFormat類:

先要輸入兩個java包:

然後:

定義日期格式:SimpleDateFormat sdf = new SimpleDateFormat(yy-MM-dd);

sql語句為:String sqlStr = "select bookDate from roomBook where bookDate between '2007-4-10' and '2007-4-25'";

輸出:

System.out.println(df.format(rs.getDate("bookDate")));

************************************************************

java中擷取目前日期和時間的方法

import java.util.Date; 

import java.util.Calendar; 

import java.text.SimpleDateFormat; 

public class TestDate{ 

public static void main(String[] args){ 

Date now = new Date(); 

SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");//可以友善地修改日期格式

String hehe = dateFormat.format( now ); 

System.out.println(hehe); 

Calendar c = Calendar.getInstance();//可以對每個時間域單獨修改

int year = c.get(Calendar.YEAR); 

int month = c.get(Calendar.MONTH); 

int date = c.get(Calendar.DATE); 

int hour = c.get(Calendar.HOUR_OF_DAY); 

int minute = c.get(Calendar.MINUTE); 

int second = c.get(Calendar.SECOND); 

System.out.println(year + "/" + month + "/" + date + " " +hour + ":" +minute + ":" + second); 

 有時候要把String類型的時間轉換為Date類型,通過以下的方式,就可以将你剛得到的時間字元串轉換為Date類型了。

SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");

java.util.Date time=null;

try {

   time= sdf.parse(sdf.format(new Date()));

} catch (ParseException e) {

   e.printStackTrace();

本文轉自左正部落格園部落格,原文連結:http://www.cnblogs.com/soundcode/p/6292185.html,如需轉載請自行聯系原作者