How to convert long-integer time to NSString or NSDate to display time?

落花浮王杯 提交于 2019-12-08 17:00:21

问题


I got a serial number form Java Date which convert into long-integer such as "1352101337000". The problem I met is how to analyze this long-integer number back to NSDate or NSString so that I can clear to know what time the serial number is displaying.

Do anybody have solution for this case?


回答1:


Use this,

NSTimeInterval timeInMiliseconds = [[NSDate date] timeIntervalSince1970];

To change it back,

NSDate* date = [NSDate dateWithTimeIntervalSince1970:timeInMiliseconds];

As per apple documentation,

NSTimeInterval: Used to specify a time interval, in seconds.

typedef double NSTimeInterval;

It is of type double.

To convert a date to string,

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];
[formatter setDateFormat:@"yyyy-MM-dd HH:mm:ss zzz"];

//Optionally for time zone converstions
[formatter setTimeZone:[NSTimeZone timeZoneWithName:@"..."]];

NSString *stringFromDate = [formatter stringFromDate:myNSDateInstance];

[formatter release];



回答2:


Swift

This answer has been updated for Swift 3, and thus no longer uses NSDate.

Do the following steps to convert a long integer to a date string.

// convert to seconds
let timeInMilliseconds = 1352101337001
let timeInSeconds = Double(timeInMilliseconds) / 1000

// get the Date
let dateTime = Date(timeIntervalSince1970: timeInSeconds)

// display the date and time
let formatter = DateFormatter()
formatter.timeStyle = .medium
formatter.dateStyle = .long
print(formatter.string(from: dateTime)) // November 5, 2012 at 3:42:17 PM

Notes

  • Since Java dates are stored as long integers in milliseconds since 1970 this works. However, make sure this assumption is true before just converting any old integer to a date using the method above. If you are converting a time interval in seconds then don't divide by 1000, of course.
  • There are other ways to do the conversion and display the string. See this fuller explanation.


来源:https://stackoverflow.com/questions/13228232/how-to-convert-long-integer-time-to-nsstring-or-nsdate-to-display-time

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!