1.string格式轉(zhuǎn)化為Date對(duì)象
public Date format(String date){
DateFormat fmt =new SimpleDateFormat("yyyy-MM-dd");
Date date1=null;
try {
//String轉(zhuǎn)date
date1 = fmt.parse(date);
} catch (ParseException e) {
// e.printStackTrace();
}
return date1;
}
2.Date格式轉(zhuǎn)化為String對(duì)象文章來源:http://www.zghlxwxcb.cn/news/detail-740187.html
Date date=new Date();
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
String startTime = sdf.format( date.getTime());
System.out.println(startTime);
?文章來源地址http://www.zghlxwxcb.cn/news/detail-740187.html
到了這里,關(guān)于String與Date格式之間的轉(zhuǎn)換的文章就介紹完了。如果您還想了解更多內(nèi)容,請(qǐng)?jiān)谟疑辖撬阉鱐OY模板網(wǎng)以前的文章或繼續(xù)瀏覽下面的相關(guān)文章,希望大家以后多多支持TOY模板網(wǎng)!