格式化日期时忽略 DST(夏令时)

发布于 2024-12-17 21:41:56 字数 268 浏览 0 评论 0原文

我有这个应用程序,它将当前日期与 xml 文件中的解析日期进行比较:

Date timeDiff = new Date(date.getTime() - new Date().getTime());

问题是当我通过 simpleDateFormat 将变量 timeDiff 作为字符串输出时,会考虑夏令时,这会增加一个额外的小时。这搞乱了我的输出。

有没有办法让 SimpleDateFormat 忽略 DST?

谢谢!

I have this application which compares current date to a parsed date from an xml file:

Date timeDiff = new Date(date.getTime() - new Date().getTime());

The problem is when i output the variable timeDiff as a string via simpleDateFormat, daylight saving time is taken to account which adds an extra hour. This messes up my output.

Is there anyway to make SimpleDateFormat ignore DST?

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

酒废 2024-12-24 21:41:56

您将一个时间减去另一个时间,以获得以毫秒为单位的持续时间。您根本不应该尝试将其格式化为日期。这是毫秒数,而不是日期。

目前尚不清楚您期望的结果是什么,但目前您基本上采用了错误的方式。

You're subtracting one time from another, to get a duration in milliseconds. You shouldn't be trying to format that as a date at all. It's a number of milliseconds, not a date.

It's not clear what you expect the result to be, but at the moment you're basically going about it the wrong way.

薆情海 2024-12-24 21:41:56

为什么不直接使用时间
它具有 normalize() 方法它需要一个布尔值来指示是否要忽略 DST。

Why don't you just use Time.
It has the normalize() method that takes a boolean to indicate if you want to ignore DST.

笙痞 2024-12-24 21:41:56

好吧伙计们!也许用这个解决方案更好:

public static String millisToString(long l){
        long h, m;
        h = l / 3600000;
        m = (l % 3600000) / 60000;
        if(h == 0){
            return m + "m";
        }else{
            return h + "h " + m + "m";
        }
    }

Ok guys! Maybe better with this solution:

public static String millisToString(long l){
        long h, m;
        h = l / 3600000;
        m = (l % 3600000) / 60000;
        if(h == 0){
            return m + "m";
        }else{
            return h + "h " + m + "m";
        }
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文