我正在尝试将 String 转换为 java Timestamp。我正在使用以下代码
SimpleDateFormat dateFormat = new SimpleDateFormat("MM/dd/yyyy HH:mm:ss:SSS");
Date parsedDate = dateFormat.parse(value);
Timestamp timestamp = new Timestamp(parsedDate.getTime());
return timestamp;
我的输入是 Input ::"10/01/2012 06:45:23:245946"
但我得到错误的输出 :: 2012-10-01 06:49:28.946
这段代码有什么问题??