自定义日期和时间字符串(以毫秒为单位)

发布于 2024-11-17 08:50:23 字数 325 浏览 3 评论 0原文

我有时间以毫秒为单位。 1308700800000;我需要将其转换为 Jun 9'11 at 02:15 PM 之类的内容。

我尝试使用,

SimpleDateFormat format = new SimpleDateFormat("MMM D'\''YY");

但出现异常:

Caused by: java.lang.IllegalArgumentException: Unterminated quote

任何帮助将不胜感激。

I have time in milliseconds for ex. 1308700800000; I need to convert it to something like Jun 9'11 at 02:15 PM.

I tried using

SimpleDateFormat format = new SimpleDateFormat("MMM D'\''YY");

but i get an exception:

Caused by: java.lang.IllegalArgumentException: Unterminated quote

Any help would be highly appreciated.

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

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

发布评论

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

评论(3

镜花水月 2024-11-24 08:50:23

从异常消息中可以清楚地看出,问题出在格式字符串上,特别是单引号部分周围。

查看文档,我们可以看到:

可以使用单引号 (') 引用文本以避免解释。 “''”代表单引号。

因此,我相信您的格式(对于该日期部分,根据您现有的示例)可以简单到

new SimpleDateFormat("MMM d''yy")

不需要涉及反斜杠。

It's clear from the exception message that the problem is going to lie with your format string, in particular around the single quote part.

Looking at the documentation, we can see that:

Text can be quoted using single quotes (') to avoid interpretation. "''" represents a single quote.

Thus I believe your format (for that date part, as per your existing example) can be as simple as

new SimpleDateFormat("MMM d''yy")

There should be no need to get backslashes involved.

韬韬不绝 2024-11-24 08:50:23

尝试:

import java.util.*;
import java.text.*;

class D {
    public static void main( String ... args )  {
        System.out.println( 
            new SimpleDateFormat("MMM dd''yy")
            .format( new Date( 1308700800000L  ))
        );
    }
}

打印:

Jun 21'11

try:

import java.util.*;
import java.text.*;

class D {
    public static void main( String ... args )  {
        System.out.println( 
            new SimpleDateFormat("MMM dd''yy")
            .format( new Date( 1308700800000L  ))
        );
    }
}

prints:

Jun 21'11
帝王念 2024-11-24 08:50:23

Andrzej 是对的,但 Caps D 和 Y 不适合你。阅读文档,但是
那应该有效:

SimpleDateFormat format = new SimpleDateFormat("MMM d''yy 'at' HH:mm:ss z")

Andrzej is right, but Caps D and Y won't work for you. Read the doc, but
that should work:

SimpleDateFormat format = new SimpleDateFormat("MMM d''yy 'at' HH:mm:ss z")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文