我必须在java中将日期Sun Oct 25 18:41:35 IST 2015
转换为Oct 25 2015
。
你有什么建议吗?
答案 0 :(得分:-1)
使用此
java.util.Date date = new Date("Sun Oct 25 18:41:35 IST 2015");
SimpleDateFormat formatter = new SimpleDateFormat("MMM dd yyyy");
String format = formatter.format(date);
System.out.println(format);