涉及的核心類別:Date類別、SimpleDateFormat類別、Calendar類別
一、 Date型與long型
Date型轉換為long
Date date = new Date();//取得目前時間型
Date date = new Date();//取得目前時間型
Date date long date2long = date.getTime();//Date轉long
long型轉換為Date型
long cur = System.currentTimeMills();//取得當前時間long型回傳
Date long2date = new Date(cur );//long轉Date
二、Date型與String型
Date型轉換為String型
Date date = new Date();
SimpleDateFormat sdf = new Date();
SimpleDateFormat sdf = newpleDateFormat(HH mm:ss.SSS");//設定目標轉換格式為yyyy-MM-dd HH:mm:ss.SSS
String date2string = sdf.format(date);//Date轉String
String型轉換為Date型
String str="2001-11-03 11:12:33.828";//設定初始string型別日期
Date str2date=sdf.parse(str);//String轉Date
Date str2date=sdf.parse(str);//String轉DateDate str2date=sdf.與Calendar型
Date型轉換為Calendar型
Calendar cal = Calendar.getInstance();//取得目前時間Calendar型
cal.setTime(date); //Date轉Calendar
型Calendar cal = Calendar.getInstance();//取得當前時間Calendar類型Date cal2date = cal.getTime();//Calendar轉Date四、面試題
:一個寫方法,參數是Date date,將date往後推3天,在以「yyyy-mm-dd」格式回傳字串型別
public String add3Day(Date date) throws ParseException{
SimpleDateFormat sdf = newpleDateFormat("- SimpleDateFormat sdf = newpleDateFormat("- SimpleDateFormat sdf = newpleDateFormat(" dd");
Calendar cal = Calendar.getInstance();
cal.setTime(date);//Date轉換為Calendar
cal.add(Calendar.DATE, 3);//將日期往後推3天,減少3天則-3. 月增加則Calendar.MONTH
return after;
}
String與基本類型之間的轉換依靠的是String.valueOf()方法
Date與String類別之間的轉換依靠的是SimpleDateFormat類別
Date與long轉換依靠的是Date提供的構造以及getTime( )方法
Date與Calendar轉換依賴的是Calendar提供的setTime()及getTime()方法