-4

可能重复:
使用 Format 类格式化日期(或否则 if )

我正在使用“My Sql”数据库,在我的数据库表中,我以“2012-04-30”格式存储日期,但现在我必须以这种“2012 年 4 月 4 日”格式在我的 jsp 页面中显示它。

我如何使用 Java 代码做到这一点?

4

1 回答 1

1
    Date d = (new SimpleDateFormat("yyyy-MM-dd").parse("2012-04-30"));
    String result = (new SimpleDateFormat("dd-MMM-yyyy", Locale.ENGLISH).format(d));
    System.out.println(result);
于 2012-04-24T11:57:58.397 回答