0

我想转换Tue Jun 01 00:00:00 IST 11201-JUN-2012

我用了

 Calendar calendar = new GregorianCalendar(year, 6, Calendar.DAY_OF_MONTH); 
     Date maxDate=new Date();
     maxDate=calendar.getTime();  
     calendar.set(Calendar.DAY_OF_MONTH, calendar.getActualMinimum(Calendar.DAY_OF_MONTH)); 
      SimpleDateFormat s=new SimpleDateFormat("dd-mmm-yyyy");
       s.format(maxDate);

但我明白了30-000-0112

4

2 回答 2

5

使用 CAPITAL M 表示月份,

 SimpleDateFormat s=new SimpleDateFormat("dd-MMM-yyyy");

另外,您要先设置日期,然后要重置日历,我猜这不是您想要做的,因此您可能需要将其更改为如下

Date maxDate=new Date();
calendar.set(Calendar.DAY_OF_MONTH, calendar.getActualMinimum(Calendar.DAY_OF_MONTH)); 
maxDate=calendar.getTime();  
SimpleDateFormat s=new SimpleDateFormat("dd-MMM-yyyy");
s.format(maxDate);

于 2012-07-06T05:04:52.017 回答
3

在日期格式中使用大写 MMM,如下所示 -

  SimpleDateFormat s=new SimpleDateFormat("dd-MMM-yyyy");

其他一切正常

    Calendar calendar = Calendar.getInstance();
     Date maxDate=new Date();
     maxDate=calendar.getTime();  
     calendar.set(Calendar.DAY_OF_MONTH, calendar.getActualMinimum(Calendar.DAY_OF_MONTH)); 
     SimpleDateFormat s=new SimpleDateFormat("dd-MMM-yyyy");
     System.out.println(s.format(maxDate));

输出将是 -06-Jul-2012

于 2012-07-06T05:17:20.670 回答