如何在2015年10月25日18:41:35 IST 2015到2015年10月25日转换?

时间:2015-10-30 09:43:42

标签: java

我必须在java中将日期Sun Oct 25 18:41:35 IST 2015转换为Oct 25 2015。 你有什么建议吗?

1 个答案:

答案 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);