当前位置:   article > 正文

c# 时间戳的使用,日期判定(时间戳获取、 时间戳和DateTime的转换、时差计算)

c# 时间戳

一、获取时间戳
获取系统时间的时间戳
 /// <summary>
    /// 获取时间戳
    /// </summary>
    /// <returns></returns>
    public string GetTimeStamp()
    {
        //DateTime.Now获取的是电脑上的当前时间
           TimeSpan ts = DateTime.UtcNow - new DateTime(1970, 1, 1, 0, 0, 0, 0);
        return Convert.ToInt64(ts.TotalSeconds).ToString();//精确到秒
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
获取世界标准时区的当前时间的时间戳(比北京时间晚8小时,我很少用)
    /// <summary>
    /// 获取时间戳
    /// </summary>
    /// <returns></returns>
    public static string GetUtcNowTimeStamp()
    {
        //DateTime.UtcNow获取的是世界标准时区的当前时间(比北京时间少8小时)
        TimeSpan ts = DateTime.Now  - new DateTime(1970, 1, 1, 0, 0, 0, 0);
        return Convert.ToInt64(ts.TotalMilliseconds).ToString();//精确到毫秒
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
二、时间戳和DateTime的相互转换(原文)
	/// <summary>
    /// 时间戳转换为DataTime
    /// </summary>
    /// <param name="unixTimeStamp"></param>
    /// <returns></returns>
    public DateTime TimestampToDataTime(long unixTimeStamp)
    {        
        System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970, 1, 1)); // 当			  地时区
        DateTime dt = startTime.AddSeconds(unixTimeStamp);
        System.Console.WriteLine(dt.ToString("yyyy/MM/dd HH:mm:ss:ffff"));
        return dt;
    }

    /// <summary>
    /// DataTime转时间戳
    /// </summary>
    /// <param name="dateTime"></param>
    /// <returns></returns>
    public long DataTimeToTimestamp(DateTime dateTime)
    {
        //new System.DateTime(1970, 1, 1)
        System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(dateTime); // 当地时区
        long timeStamp = (long)(DateTime.Now - startTime).TotalSeconds; // 相差秒数
        System.Console.WriteLine(timeStamp);
        return timeStamp;
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
三、时差计算(原文)
/// <summary>
    /// 计算两个日期的时间间隔,返回的是时间间隔的日期差的绝对值......     
    ///
    /// DateTime1 第一个日期和时间
    /// DateTime2 第二个日期和时间
    /// </summary>
    /// <param name="DateTime1"></param>
    /// <param name="DateTime2"></param>
    /// <returns></returns>
    private string DateDiff(DateTime DateTime1, DateTime DateTime2)
    {
        string dateDiff = null;
        try
        {
            TimeSpan ts1 = new TimeSpan(DateTime1.Ticks);
            TimeSpan ts2 = new TimeSpan(DateTime2.Ticks);
            TimeSpan ts = ts1.Subtract(ts2).Duration();
            dateDiff = ts.Days.ToString() + "天"
                    + ts.Hours.ToString() + "小时"
                    + ts.Minutes.ToString() + "分钟"
                    + ts.Seconds.ToString() + "秒";

            Debug.Log("时间相差:" + dateDiff);
        }
        catch
        {
            print("计算失败!");
        }        
        return dateDiff;
    }
    ///
    /// 已重载.计算一个时间与当前本地日期和时间的时间间隔,返回的是时间间隔的日期差的绝对值.
    ///
    /// 一个日期和时间
    ///
    private string DateDiff(DateTime DateTime1)
    {
        print(this.DateDiff(DateTime1, DateTime.Now));
        return this.DateDiff(DateTime1, DateTime.Now);
    }
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40

四、判断系统日期是否超过既定日期

 /// <summary>
    /// 当前时间是否超过目标日期
    /// </summary>
    /// <returns></returns>
    public static bool IsProcessTimeOut(string TragetTime = "20230227010000")
    {
        DateTime dt = DateTime.ParseExact(TragetTime, "yyyyMMddhhmmss", System.Globalization.CultureInfo.CurrentCulture);
        if (DateTime.Now > dt)
        {
            //print("超时了");
            return true;
        }
        //print("未超时");
        return false;
    }   
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/118515?site
推荐阅读
相关标签
  

闽ICP备14008679号