如何将“2012-04-30”日期转换为“2012年4月4日”格式

时间:2012-04-24 11:53:06

标签: java

  

可能重复:
  Formatting Dates using a Format class (or otherwise if )

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

如何使用Java代码执行此操作?

1 个答案:

答案 0 :(得分: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);