我的字符串日期格式为DD / MM / YY(16/07/13)
如何将此字符串日期转换为SQL日期格式(保持相同的DD / MM / YY格式)
用于存储在我的Oracle DB中.. ??
答案 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
。