将字符串日期转换为SQL日期

时间:2013-07-23 20:53:06

标签: java date

我的字符串日期格式为DD / MM / YY(16/07/13)
如何将此字符串日期转换为SQL日期格式(保持相同的DD / MM / YY格式)
用于存储在我的Oracle DB中.. ??

1 个答案:

答案 0 :(得分:3)

使用SimpleDateFormat

SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yy");
String stringWithDate = "16/07/13";
Date theDate = sdf.parse(stringWithDate);
//store theDate variable in your database...

请注意,SimpleDateFormat#parse会引发ParseException