English 中文(简体)
将带有时间的字符串转换为毫秒数
原标题:Converting a string with a time to the amount of milli seconds
  • 时间:2012-05-24 11:01:12
  •  标签:
  • java

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.

最佳回答

无法完全确定 Date 是否打算用于持续时间(不同时间点)。

现提出另一种办法,但:

String[] hms = sDuration.split(":");

double sec = Integer.parseInt(hms[0]) * 3600
           + Integer.parseInt(hms[1]) * 60
           + Double.parseDouble(hms[2]);
问题回答

另一种做法是:

String sDuration = "00:00:24.20";
SimpleDateFormat dateFormat = new SimpleDateFormat("HH:mm:ss.SS");
Date end = dateFormat.parse(sDuration);
Date start = dateFormat.parse("00:00:00.00");
System.out.println("Duration: " + (end.getTime() - start.getTime()));

我一直在做一些测试 原因就在于你所在的时区

如果有的话

Date begin = new Date().setTime(0);
System.out.println(begin);

我得到这个输出:

1970年1月1日 01:00:00 CET 1970年

00: 00和01: 00之间的任何事物 都会在我的时区有负数毫秒

不要忘记简单DateFormat 是 < 坚固 > 而非 < / 坚固 > 的线条安全, 应该这样称呼它:

    private static final ThreadLocal<SimpleDateFormat> SIMPLE_DATE_FORMAT = new ThreadLocal<SimpleDateFormat>() {
    @Override protected SimpleDateFormat initialValue() { return new SimpleDateFormat("format"); };
    @Override public void set(SimpleDateFormat value) { /*...*/ };
};




相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签