我在String
转换为Date
Format 时遇到问题。请帮我。下面是我的代码:
String strDate = "23/05/2012"; // Here the format of date is MM/dd/yyyy
现在我想将上面的字符串转换为日期格式,如“ 2012 年 5 月 23 日”。
我正在使用下面的代码,但我得到的价值是“ Wed May 23 00:00:00 BOT 2012 ”
String string = "23/05/2012";
Date date = new SimpleDateFormat("MM/dd/yyyy", Locale.ENGLISH).parse(string);
System.out.println(date); // Wed May 23 00:00:00 BOT 2012
我如何才能获得“ 2012 年 5 月 23 日”的值。请朋友们帮帮我....