Android 中的日期格式

发布于 2024-11-27 16:43:55 字数 666 浏览 2 评论 0原文

我的日期字符串格式为 8/1/2011 04:06 am。我希望它使用 DateFormat 将其转换为 2011-08-1T16:06:00-04:00 格式的日期字符串。我正在使用代码

 private String formatDate(String date) {

    SimpleDateFormat curFormater = new SimpleDateFormat("dd/MM/yyyy hh:mm a"); 
    Date dateObj = null;

        try {
            dateObj =  curFormater.parse(date);
        } catch (ParseException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        String format = "yyyy-MM-dd'T'HH:mmZ";

        String date = (String) DateFormat.format(format, dateObj);
        return date;
    }

但它返回字符串 2011-01-08THH:37Z。

有人可以帮我解决这个问题吗?

I have date string of the format 8/1/2011 04:06 am. I want it to convert it in to the date string of the format 2011-08-1T16:06:00-04:00 using DateFormat. I am using the code

 private String formatDate(String date) {

    SimpleDateFormat curFormater = new SimpleDateFormat("dd/MM/yyyy hh:mm a"); 
    Date dateObj = null;

        try {
            dateObj =  curFormater.parse(date);
        } catch (ParseException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        String format = "yyyy-MM-dd'T'HH:mmZ";

        String date = (String) DateFormat.format(format, dateObj);
        return date;
    }

But it returns the String 2011-01-08THH:37Z.

Can any one please help me with this?

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

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

发布评论

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

评论(1

冷…雨湿花 2024-12-04 16:43:55

尝试将其替换

String date = (String) DateFormat.format(format, dateObj);

为:

curFormater = new SimpleDateFormat(format);
date = curFormater.format(dateObj);

另外,请考虑到您的示例有点误导:

04:06 am 不应该是 16:06:00-04:0004:06 pm 应该是16:06:00-04:00

Try to replace this:

String date = (String) DateFormat.format(format, dateObj);

with this:

curFormater = new SimpleDateFormat(format);
date = curFormater.format(dateObj);

Also, take into account that your example is a bit misleading:

04:06 am should not be 16:06:00-04:00 but 04:06 pm should be 16:06:00-04:00.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文