没有合适的资源?快使用搜索试试~ 我知道了~
完成时间戳向各种时间格式的快速转换
资源推荐
资源详情
资源评论
本工具中的时间皆为秒,如果时间为毫秒,需要先转化为秒,再进行使用
using System;
public static class Tools_TimeFormat
{
/// <summary>
/// 服务器发过来的时间进行格式转化
/// </summary>
public static string ToTimeFormatString(this long seconds)
{
//long timeLong = (System.DateTime.Now.Ticks - System.DateTime.UtcNow.Ticks) / 10000;
//DateTime time = new DateTime(1970, 1, 1);
//time = time.AddSeconds(seconds);
//time = time.AddMilliseconds(timeLong);
string ret = SecondsToDateTime(seconds).ToString("yyyy/MM/dd @ HH:mm");
return ret;
}
/// <summary>
/// UTC距1970年秒数 - 转成本地时间
/// </summary>
/// <param name="seconds"></param>
/// <returns></returns>
private static DateTime SecondsToDateTime(long seconds)
{
DateTime time = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc).AddSeconds(seconds).ToLocalTime();
if (time.Year < 1970 || time.Year > 2030)
{
time = new DateTime(2000, time.Month, time.Day, time.Hour, time.Minute, time.Second);
}
return time;
using System;
public static class Tools_TimeFormat
{
/// <summary>
/// 服务器发过来的时间进行格式转化
/// </summary>
public static string ToTimeFormatString(this long seconds)
{
//long timeLong = (System.DateTime.Now.Ticks - System.DateTime.UtcNow.Ticks) / 10000;
//DateTime time = new DateTime(1970, 1, 1);
//time = time.AddSeconds(seconds);
//time = time.AddMilliseconds(timeLong);
string ret = SecondsToDateTime(seconds).ToString("yyyy/MM/dd @ HH:mm");
return ret;
}
/// <summary>
/// UTC距1970年秒数 - 转成本地时间
/// </summary>
/// <param name="seconds"></param>
/// <returns></returns>
private static DateTime SecondsToDateTime(long seconds)
{
DateTime time = new DateTime(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc).AddSeconds(seconds).ToLocalTime();
if (time.Year < 1970 || time.Year > 2030)
{
time = new DateTime(2000, time.Month, time.Day, time.Hour, time.Minute, time.Second);
}
return time;
资源评论
半天法师
- 粉丝: 103
- 资源: 11
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- 基于 Ant 的 Java 项目示例.zip
- 各种字符串相似度和距离算法的实现Levenshtein、Jaro-winkler、n-Gram、Q-Gram、Jaccard index、最长公共子序列编辑距离、余弦相似度…….zip
- 运用python生成的跳跃的爱心
- 包括用 Java 编写的程序 欢迎您在此做出贡献!.zip
- (源码)基于QT框架的学生管理系统.zip
- 功能齐全的 Java Socket.IO 客户端库,兼容 Socket.IO v1.0 及更高版本 .zip
- 功能性 javascript 研讨会 无需任何库(即无需下划线),只需 ES5 .zip
- 分享Java相关的东西 - Java安全漫谈笔记相关内容.zip
- 具有适合 Java 应用程序的顺序定义的 Cloud Native Buildpack.zip
- 网络建设运维资料库职业
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功