java中如何将时间戳转换为日期格式

2022-01-13 00:00:00 datetime timestamp date android java

我有一个这样的时间戳(形成一个 json 响应):

I have a time stamp like this(form a json response) :

"/日期(1479974400000-0800)/"

"/Date(1479974400000-0800)/"

我正在尝试使用此功能将时间戳转换为日期:

I'm trying this function to convert time stamp into date:

public String getDate() {
    Calendar cal = Calendar.getInstance(Locale.ENGLISH);
    cal.setTimeInMillis(time);
    String date = DateFormat.format("dd-MM-yyyy", cal).toString();
    return date;
}

如何将此时间戳转换为日期格式?

推荐答案

解决方案有效对我来说是这样的:

The solution works for me is like this:

 String str = obj.getString("eventdate").replaceAll("\D+", "");
String upToNCharacters = str.substring(0, Math.min(str.length(), 13));
DateFormat timeZoneFormat = new SimpleDateFormat("dd-MM-yyyy HH:mm:ss");
timeZoneFormat.setTimeZone(TimeZone.getTimeZone("GMT-8"));

Date time = new java.util.Date(Long.parseLong(upToNCharacters));
//                                System.out.println(time);
model.setDate(String.valueOf(timeZoneFormat.format(time)));

在需要的地方使用时间变量

Use time variable where you want

相关文章