4
'2009-12 Dec' should be converted to '31-DEC-2009'
'2010-09 Sep' should be converted to '30-SEP-2010'
'2010-02 Feb' should be converted to '28-FEB-2010'
'2008-02 Feb' should be converted to '29-FEB-2008'

2009-12 Dec , 2008-02 Feb将在下拉列表中显示给用户。用户没有选择DAY的选项。

用户选择的值应传递给数据库。但是数据库需要格式中的日期DD-MMM-YYYY。查询有 ' <= USER_DATE' 条件。因此,应自动选择该月的最后一天并将其传递给数据库。

请帮助我编写完成上述工作的功能。

static SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM MMM");

    public static String convertMapedToSqlFormat(final String maped) {
        String convertedMaped = null;
        //....
        return convertedMaped;
    }

    @Test
    public void testConvertMapedToSqlFormat() {
        String[] mapedValues = { "2009-12 Dec", "2009-11 Nov", "2009-10 Oct",
                "2009-09 Sep", "2009-08 Aug", "2009-07 Jul", "2009-06 Jun",
                "2009-05 May", "2009-04 Apr", "2009-03 Mar", "2009-02 Feb",
                "2009-01 Jan", "2008-12 Dec", "2008-11 Nov", "2008-10 Oct" };
        for (String maped : mapedValues) {
            System.out.println(convertMapedToSqlFormat(maped));
        }
    }
4

5 回答 5

7

将其转换为Calendar并用于Calendar#getActualMaximum()获取月份的最后一天并使用它设置日期。

开球示例:

String oldString = "2009-12 Dec";
Calendar calendar = Calendar.getInstance();
calendar.setTime(new SimpleDateFormat("yyyy-MM").parse(oldString)); // Yes, month name is ignored but we don't need this.
calendar.set(Calendar.DATE, calendar.getActualMaximum(Calendar.DATE));
String newString = new SimpleDateFormat("dd-MMM-yyyy").format(calendar.getTime()).toUpperCase();
System.out.println(newString); // 31-DEC-2009
于 2010-10-01T13:35:34.013 回答
2
  • 使用您的DateFormat(但将其修复为yyyy-dd MMM)来解析日期
  • 转换DateCalendar
  • 利用Calendar.getActualMaximim()
  • 用于dd-MMM-yyyy格式化获取的日期。
  • 称呼.toUpperCase()

所以:

static SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM MMM");
static SimpleDateFormat dbDateFormat = new SimpleDateFormat("yyyy-MMM-dd");

public static String convertMapedToSqlFormat(final String maped) {
    Date date = dateFormat.parse(mapped);
    Calendar cal = Calendar.getInstance();
    cal.setTime(date);
    cal.set(Calendar.DAY_OF_MONTH, cal.getActualMaximum(Calendar.DAY_OF_MONTH));
    return dbDateFormat.format(cal.getTime()).toUpperCase();
}

几点注意事项:

  • 如果可能的话,使用joda-time DateTime
  • 避免在数据库中使用严格的日期格式。
于 2010-10-01T13:31:32.570 回答
1

从字符串的 YYYY-MM 部分获取年份和月份。

使用 JODA 创建对应于该月第一天的时间点。前进一个月,后退一天。将时间展平为您需要的字符串表示形式。

于 2010-10-01T13:32:56.733 回答
0

嗨,你必须解析你的日期,就像这样

      SimpleDateFormat df = new SimpleDateFormat("MM/dd/yyyy");
      Date du = new Date();
      du = df.parse(sDate);
      df = new SimpleDateFormat("yyyy-MM-dd");
      sDate = df.format(du);

希望这可以帮助。让我知道是否有。

PK

于 2010-10-01T13:30:48.033 回答
0

java.time

现在,现代 java.time 类取代了问题和其他答案中出现的麻烦的旧日期时间类,现在变得容易多了。

java.time框架内置于 Java 8 及更高版本中这些类取代了旧的麻烦的日期时间类,例如java.util.Date, .Calendar, & java.text.SimpleDateFormat

现在处于维护模式Joda-Time项目还建议迁移到 java.time。

要了解更多信息,请参阅Oracle 教程。并在 Stack Overflow 上搜索许多示例和解释。

许多 java.time 功能在 ThreeTen-Backport 中向后移植到 Java 6 和 7,并在ThreeTenABP进一步适应Android

ThreeTen -Extra项目通过附加类扩展了 java.time。该项目是未来可能添加到 java.time 的试验场。

YearMonth

YearMonth课程提供您想要的内容。

YearMonth start = YearMonth.of( 2008 , Month.OCTOBER );
YearMonth stop = YearMonth.of( 2009 , Month.DECEMBER );
List<YearMonth> yms = new ArrayList<>();
YearMonth ym = start ;
while( ! ym.isAfter( stop ) ) {
    yms.add( ym );
    // Set up the next loop.
    ym = ym.plusMonths( 1 ); 
}

要呈现,请使用 aDateTimeFormatter生成YearMonth值的字符串表示形式。

DateTimeFormatter f = DateTimeFormatter.ofPattern( "uuuu-MM MMM" );
f = f.withLocale( Locale.CANADA_FRENCH );  // Or Locale.US etc.
String output = ym.format( f );

要获得该月的最后一天,请询问该YearMonth对象。

LocalDate endOfMonth = ym.atEndOfMonth();

要演示,请使用DateTimeFormatter. 要么让实例化一个自动本地化到指定的格式化程序Locale,要么指定你自己的格式化模式。在 Stack Overflow 上的许多其他问题和答案中多次显示。

于 2016-08-13T05:42:16.270 回答