gpt4 book ai didi

java - 格式化包含日期的字符串

转载 作者:行者123 更新时间:2023-11-29 03:19:38 24 4
gpt4 key购买 nike

我从服务器收到包含此格式日期的字符串 (2014-06-04 10:26:06)。

我想将它转换为日期并将此日期格式应用于它

SimpleDateFormat longDateFormat = new SimpleDateFormat("dd MMMM yyyy");

这就是我目前拥有的,但它不起作用。

            String formattedDate = longDateFormat.format(messageGSON.getCreated());
viewHolder.textViewMessageDate.setText(formattedDate);

我似乎找不到解决方案,我想我错过了一步

最佳答案

试试这个..

1) parse() 字符串到Date

2) format()Date转换为String

String formattedDate = longDateFormat.format(new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").parse(messageGSON.getCreated()));
viewHolder.textViewMessageDate.setText(formattedDate);

关于java - 格式化包含日期的字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24433907/

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