zoukankan      html  css  js  c++  java
  • 时间与时间戳的转换

    //    设置时间显示格式:

        NSString *timeStr = @"2011-01-26 17:40:50";

        NSDateFormatter *formatter = [[NSDateFormatter alloc] init];

        [formatter setDateStyle:NSDateFormatterMediumStyle];

        [formatter setTimeStyle:NSDateFormatterShortStyle];

        [formatter setDateFormat:@"YYYY-MM-dd HH:mm:ss"]; // ----------设置你想要的格式,hh与HH的区别:分别表示12小时制,24小时制

        //设置时区,这个对于时间的处理有时很重要

        //例如你在国内发布信息,用户在国外的另一个时区,你想让用户看到正确的发布时间就得注意时区设置,时间的换算.

        //例如你发布的时间为2010-01-26 17:40:50,那么在英国爱尔兰那边用户看到的时间应该是多少呢?

        //他们与我们有7个小时的时差,所以他们那还没到这个时间呢...那就是把未来的事做了

        NSTimeZone* timeZone = [NSTimeZone timeZoneWithName:@"Asia/Shanghai"];

        [formatter setTimeZone:timeZone];

        NSDate *date = [formatter dateFromString:timeStr]; //------------将字符串按formatter转成nsdate

        NSLog(@"date = %@", date);

        NSDate *datenow = [NSDate date];//现在时间,你可以输出来看下是什么格式

        NSLog(@"datenow = %@", datenow);

        NSString *nowtimeStr = [formatter stringFromDate:datenow];//----------将nsdate按formatter格式转成nsstring,nsstring会显示与当前的时间吻合的串

        NSLog(@"nowtimeStr = %@", nowtimeStr);

    //    时间转时间戳的方法:

        NSString *timeSp = [NSString stringWithFormat:@"%ld", (long)[datenow timeIntervalSince1970]];

        NSLog(@"timeSp:%@",timeSp); //时间戳的值

    //    时间戳转时间的方法

        NSDate *confromTimesp = [NSDate dateWithTimeIntervalSince1970:1296035591];

        NSLog(@"1296035591  = %@",confromTimesp);

        NSString *confromTimespStr = [formatter stringFromDate:confromTimesp];

        NSLog(@"confromTimespStr =  %@",confromTimespStr);

    //    时间戳转时间的方法:

        NSDateFormatter* formatter1 = [[NSDateFormatter alloc] init];

        [formatter1 setDateStyle:NSDateFormatterMediumStyle];

        [formatter1 setTimeStyle:NSDateFormatterShortStyle];

        [formatter1 setDateFormat:@"yyyyMMddHHMMss"];

        NSDate *date1 = [formatter1 dateFromString:@"1283376197"];

        NSLog(@"date1:%@",date1);

    当前时间是:14:41:57

     

  • 相关阅读:
    [转] 使用C#开发ActiveX控件
    [转] error LNK2026: 模块对于 SAFESEH 映像是不安全的
    Struts2详细说明
    a web-based music player(GO + html5)
    oracle_单向函数_数字化功能
    UVA 1364
    ORA-12545: Connect failed because target host or object does not exist
    左右v$datafile和v$tempfile中间file#
    二十9天 月出冲击黑鸟 —Spring的AOP_AspectJ @annotation
    Shell编程入门(再版)(在)
  • 原文地址:https://www.cnblogs.com/jingxin1992/p/6651348.html
Copyright © 2011-2022 走看看