Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: 使用 Format 类格式化日期(或否则 if )
我正在使用“My Sql”数据库,在我的数据库表中,我以“2012-04-30”格式存储日期,但现在我必须以这种“2012 年 4 月 4 日”格式在我的 jsp 页面中显示它。
我如何使用 Java 代码做到这一点?
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);