I need to convert the following string to the amount of seconds I tried to do this with the code below:
String sDuration = "00:00:24.20";
SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss.SS");
videoLength = dateFormat.parse(sDuration);
Logger.debug("Duration: " + videoLength + " timestamp: " + videoLength.getTime());
但我得到的回应是:
Duration: Thu Jan 01 00:00:24 GMT 1970 timestamp: -3575980
The first seems fine, but I need to .getTime() for my calculation and I get a negative number? I expected to get something like 24200.