gpt4 book ai didi

android - 将日期时间转换为 "April 6th, 2012 "格式

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:52:35 24 4
gpt4 key购买 nike

我想在日期字符串的"6th 7th.. etc."中获取day

我试过了SimpleDateFormater &也试试DateFormatSymbols .我没有收到 String Required。

有什么解决方法吗?

最佳答案

SimpleDateFormat format = new SimpleDateFormat("d");
String date = format.format(new Date());

if(date.endsWith("1") && !date.endsWith("11"))
format = new SimpleDateFormat("EE MMM d'st', yyyy");
else if(date.endsWith("2") && !date.endsWith("12"))
format = new SimpleDateFormat("EE MMM d'nd', yyyy");
else if(date.endsWith("3") && !date.endsWith("13"))
format = new SimpleDateFormat("EE MMM d'rd', yyyy");
else
format = new SimpleDateFormat("EE MMM d'th', yyyy");

String yourDate = format.format(new Date());

试试这个,这看起来像一些静态但工作正常...

关于android - 将日期时间转换为 "April 6th, 2012 "格式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10316827/

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