以前做項(xiàng)目沒(méi)遇到時(shí)間 坑匠、字符串、long型的三者之間的轉(zhuǎn)化卧惜,最多也就兩兩轉(zhuǎn)化厘灼,現(xiàn)在項(xiàng)目遇到了這么一個(gè)情況,感覺(jué)比較麻煩咽瓷,但是呢再麻煩也得完成不设凹,誰(shuí)叫咱是苦逼的程序猿呢,經(jīng)過(guò)百度加實(shí)踐發(fā)現(xiàn)了他們之間互相轉(zhuǎn)化的方法茅姜,這里列出來(lái)可供自己和大家以后直接使用闪朱。
// date類(lèi)型轉(zhuǎn)換為String類(lèi)型
// formatType格式為yyyy-MM-dd HH:mm:ss//yyyy年MM月dd日 HH時(shí)mm分ss秒
// data Date類(lèi)型的時(shí)間
public static String dateToString(Date data, String formatType) {
return new SimpleDateFormat(formatType).format(data);
}
// long類(lèi)型轉(zhuǎn)換為String類(lèi)型
// currentTime要轉(zhuǎn)換的long類(lèi)型的時(shí)間
// formatType要轉(zhuǎn)換的string類(lèi)型的時(shí)間格式
public static String longToString(long currentTime, String formatType)
throws ParseException {
Date date = longToDate(currentTime, formatType); // long類(lèi)型轉(zhuǎn)成Date類(lèi)型
String strTime = dateToString(date, formatType); // date類(lèi)型轉(zhuǎn)成String
return strTime;
}
// string類(lèi)型轉(zhuǎn)換為date類(lèi)型
// strTime要轉(zhuǎn)換的string類(lèi)型的時(shí)間,formatType要轉(zhuǎn)換的格式y(tǒng)yyy-MM-dd HH:mm:ss//yyyy年MM月dd日
// HH時(shí)mm分ss秒钻洒,
// strTime的時(shí)間格式必須要與formatType的時(shí)間格式相同
public static Date stringToDate(String strTime, String formatType)
throws ParseException {
SimpleDateFormat formatter = new SimpleDateFormat(formatType);
Date date = null;
date = formatter.parse(strTime);
return date;
}
// long轉(zhuǎn)換為Date類(lèi)型
// currentTime要轉(zhuǎn)換的long類(lèi)型的時(shí)間
// formatType要轉(zhuǎn)換的時(shí)間格式y(tǒng)yyy-MM-dd HH:mm:ss//yyyy年MM月dd日 HH時(shí)mm分ss秒
public static Date longToDate(long currentTime, String formatType)
throws ParseException {
Date dateOld = new Date(currentTime); // 根據(jù)long類(lèi)型的毫秒數(shù)生命一個(gè)date類(lèi)型的時(shí)間
String sDateTime = dateToString(dateOld, formatType); // 把date類(lèi)型的時(shí)間轉(zhuǎn)換為string
Date date = stringToDate(sDateTime, formatType); // 把String類(lèi)型轉(zhuǎn)換為Date類(lèi)型
return date;
}
// string類(lèi)型轉(zhuǎn)換為long類(lèi)型
// strTime要轉(zhuǎn)換的String類(lèi)型的時(shí)間
// formatType時(shí)間格式
// strTime的時(shí)間格式和formatType的時(shí)間格式必須相同
public static long stringToLong(String strTime, String formatType)
throws ParseException {
Date date = stringToDate(strTime, formatType); // String類(lèi)型轉(zhuǎn)成date類(lèi)型
if (date == null) {
return 0;
} else {
long currentTime = dateToLong(date); // date類(lèi)型轉(zhuǎn)成long類(lèi)型
return currentTime;
}
}
// date類(lèi)型轉(zhuǎn)換為long類(lèi)型
// date要轉(zhuǎn)換的date類(lèi)型的時(shí)間
public static long dateToLong(Date date) {
return date.getTime();
}