为什么有几个月的Java SimpleDateFormat? [英] Why are months off by one with Java SimpleDateFormat?

查看:120
本文介绍了为什么有几个月的Java SimpleDateFormat?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用SimpleDateFormat来显示这样的日历:

I am using SimpleDateFormat to display a Calendar like this :

public String getDate()
{
    String DATE_FORMAT = "EEEE, dd/MM/yyyy HH:mm:ss";
    SimpleDateFormat sdf = new SimpleDateFormat(DATE_FORMAT);
    System.err.println(date.getTime().getMonth());
    return sdf.format(date.getTime());
}

shell返回 6 和显示: mardi,06/07/2010 12:44:52

The shell returns 6 and the display : mardi, 06/07/2010 12:44:52

它不能可能吗为什么?

谢谢

推荐答案

Java API


public int getMonth()

public int getMonth()

返回一个代表包含或以即时开始的月份的数字由此Date对象表示。返回的值在0到11之间,值为0表示1月。

Returns a number representing the month that contains or begins with the instant in time represented by this Date object. The value returned is between 0 and 11, with the value 0 representing January.

这篇关于为什么有几个月的Java SimpleDateFormat?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆