我正在尝试在objective-c中获取FileTime结构中的当前日期时间,这可能吗?谢谢。
问问题
1319 次
2 回答
4
我为此找到了一个优雅的解决方案:
/**
* number of seconds from 1 Jan. 1601 00:00 to 1 Jan 1970 00:00 UTC
*/
#include <sys/time.h>
#define EPOCH_DIFF 11644473600LL
unsigned long long getfiletime()
{
struct timeval tv;
unsigned long long result = EPOCH_DIFF;
gettimeofday(&tv,NULL);
result += tv.tv_sec;
result *= 10000000LL;
result += tv.tv_usec * 10;
return result;
}
使用以下方法将当前时间存储在 FileTime 中:
NSString* timeStamp = [NSString stringWithFormat:@"%llu",getfiletime()];
于 2011-09-15T08:40:03.083 回答
1
你的意思是“YYYY:MM:DD:HH:MM:SS”吗
您可以使用以下代码。
NSDateFormatter *formatDate = [[NSDateFormatter alloc] init];
[formatDate setDateFormat:@"yyyy:MM:dd:HH:mm:ss"];
NSDate *now = [[NSDate alloc] init];
NSString *formattedDate = [formatDate stringFromDate:now];
NSLog(@"%@", formattedDate);
[now release];
[formatDate release];
于 2011-09-14T14:36:38.210 回答