我想轉換日期dd-MMM-yyyy hh:mm:ss.s
這種格式日期轉換以特定格式
我正在使用Date d = new Date();
我嘗試
SimpleDateFormat formatter2 = new SimpleDateFormat("dd-MMM-yyyy hh:mm:ss.s");
Date d = new Date();
String CALL_DATE = formatter2.format(d);
紋身給我的輸出是正確的,但是當系統日期我試着保存它給出錯誤:
ORA-01830: date format picture ends before converting entire input string
,所以請向我建議這個解決方案。
你的代碼工作正常,並打印'12-Jul-2013 11:56:06.6' –
同樣在這裏。你遇到了什麼錯誤? –
沒有複製和沒有堆棧跟蹤:投票關閉 –