我有java.util.Date
02/26/2015
。我希望将Feburary 26,2015
转换为String
。我怎么能像那样转换它?
喜欢这里发生什么?
DateFormat formatter = new SimpleDateFormat("here");
答案 0 :(得分:1)
使用以下格式:
DateFormat formatter = new SimpleDateFormat("EEE dd,yyyy");
如documentation of SimpleDateFormat中所述:
周日的E日名称 d每月的日子
年份
答案 1 :(得分:1)
DateFormat formatter = new SimpleDateFormat("MMMM dd, yyyy");
以上格式为:
MMMM Month in year,
dd Day in month,
yyyy Year,
请阅读手册,了解如何正确设置日期格式的更多可能性。
答案 2 :(得分:-1)
SimpleDateFormat format=new SimpleDateFormat("MMMM dd, yyyy");