1.string格式转化为Date对象
public Date format(String date){
DateFormat fmt =new SimpleDateFormat("yyyy-MM-dd");
Date date1=null;
try {
//String转date
date1 = fmt.parse(date);
} catch (ParseException e) {
// e.printStackTrace();
}
return date1;
}
2.Date格式转化为String对象文章来源:https://www.toymoban.com/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);
文章来源地址https://www.toymoban.com/news/detail-740187.html
到了这里,关于String与Date格式之间的转换的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!