欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

日期格式转换:String 与 date

程序员文章站 2024-01-27 18:16:46
...

在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中转换:

datestring
to_char(date,'YYYY-MM-DD');

stringdate
to_date('2018-01-09','yyyy-mm-dd'),前者为字符串,后者为转换日期格式

上一篇: 【C语言】-- char字符型

下一篇: