在java中转换
//String—>Date
String time = “2018-01-09”;
try{
SimpleDateFormat sdf= new SimpleDateFormat("yyyy-MM-dd");
Date date = sdf.parse(time);
}catch(ParseException e){
System.out.println(e.getMessage());
}
//Date—>String
SimpleDateFormat sdf=new SimpleDateFormat("yyyy-MM-dd");
Date date=new Date();
String str=sdf.format(date);
在oracle中转换:
date转string
to_char(date,'YYYY-MM-DD');
string转date
to_date('2018-01-09','yyyy-mm-dd'),前者为字符串,后者为转换日期格式