gpt4 book ai didi

java - Android 将 Ruby on Rails 时间戳转换为日期时间

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:06:05 25 4
gpt4 key购买 nike

我正在构建一个 Android 应用程序,从在 Ruby On Rails 框架中构建的 API 获取数据。
这是我的时间戳字符串
2000-01-01T12:00:00.000Z

我需要将它转换为可读的日期和时间格式,即“2000 年 1 月 1 日星期六 12:00 am”

最佳答案

你可以试试这个:

public static String convertDate(String oldDateString){
String format = "yyyy-MM-dd'T'HH:mm:ss.sssZZZZ";

SimpleDateFormat sdf = new SimpleDateFormat(format);
Date date = null;
try {
date = sdf.parse(oldDateString);
} catch (ParseException e) {
// handle exception here !
}

String newFormatString = "MMMM dd, yyyy 'at' HH:mm a";

SimpleDateFormat newFormatter = new SimpleDateFormat(newFormatString);



String newDateString = newFormatter.format(date);

return newDateString;
}

关于java - Android 将 Ruby on Rails 时间戳转换为日期时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36914336/

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