gpt4 book ai didi

java - Android 日期格式 : How to convert date in alphabets

转载 作者:行者123 更新时间:2023-12-01 13:00:20 26 4
gpt4 key购买 nike

如何将此日期 26-11-2013 转换为这种格式 nov 26。我尝试了很多事情但对我不起作用。喜欢

SimpleDateFormat formatter = new SimpleDateFormat("dd-MM-yyyy");
String dateInString = "26-11-2013";
Date date = formatter.parse(dateInString);
System.out.println(date);

最佳答案

您将必须使用另一个格式化程序来获得所需的输出格式。

SimpleDateFormat outputFormat = new SimpleDateFormat("MMM dd");
SimpleDateFormat inputFormat = new SimpleDateFormat("dd-MM-yyyy");
String dateInString = "26-11-2013";
Date date = inputFormat.parse(dateInString);
System.out.println(outputFormat.format(date));

关于java - Android 日期格式 : How to convert date in alphabets,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23564084/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com