I got a problem when I want to parse a String to a Date.
The String looks like this 2010-11-04 00:03:50.209589. But the result is Thu Nov 04 00:07:19 CET 2010 where the minutes and seconds are not correct.
String time_input = "2010-11-04 00:03:50.209589";
SimpleDateFormat time_now = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss.SSSSSS");
Date now = time_now.parse(time_input);
Thank you in advance for your help.