c# DateTime时间格式和JAVA时间戳格式相互转换

/// java时间戳格式时间戳转为C#格式时间
public static DateTime GetTime(long timeStamp)
{
    DateTime dtStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1));
    long lTime = timeStamp * 10000;
    TimeSpan toNow = new TimeSpan(lTime);
    return dtStart.Add(toNow);
}

/// C# DateTime时间格式转换为Java时间戳格式
public static long ConvertDateTime(System.DateTime time)
{
    System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970, 1, 1));
    return (long)(time - startTime).TotalMilliseconds;
} 
时间: 2024-12-19 08:19:40

c# DateTime时间格式和JAVA时间戳格式相互转换的相关文章

C# DateTime时间格式转换为Unix时间戳格式

double ntime=dateTimeToUnixTimestamp(DateTime.Now); long g1 = GetUnixTimestamp(); long g2 = ConvertDateTime2Long(DateTime.Now); public double dateTimeToUnixTimestamp(DateTime datetime) { return (datetime - new DateTime(1970, 1, 1).ToLocalTime()).Tota

DateTime转换时间戳格式

/// <summary> /// DateTime时间格式转换为Unix时间戳格式 /// </summary> /// <param name="time"> DateTime时间格式</param> /// <returns>Unix时间戳格式</returns> public static string ConvertDateTimeInt(System.DateTime time) { System.Da

Unix时间戳与C# DateTime时间类型、C语言互换 1970-01-01 00:00:00

和同事的下位机交互的时候,需要使用到时间转换, 刚好找到这篇文章,用C语言实现的话,还挺麻烦的 下面给出C#和C的源码 注:C# 转自 http://www.cnblogs.com/hanhualangzi/archive/2012/02/10/2345952.html C源码是同事给我的: C#: 1 dangranusing System; 2 using System.Collections.Generic; 3 using System.Text; 4 5 namespace WWFra

python的内置模块time和datetime的方法详解以及使用(python内的time和datetime时间格式)

time内置模块的方法 1.time() 时间戳 time() -> floating point number  浮点数 Return the current time in seconds since the Epoch. Fractions of a second may be present if the system clock provides them. import time print(time.time()) C:\python35\python3.exe D:/pyproj

php将标准字符串格式时间转换成unix时间戳_strtotime

php 将标准字符串格式时间转换成unix时间戳的函数为:strtotime函数(PHP 4, PHP 5). strtotime函数详细参考: strtotime - 将任何英文文本的日期时间描述解析为 Unix 时间戳. 函数格式说明: int strtotime ( string $time [, int $now ] ) 本函数预期接受一个包含美国英语日期格式的字符串并尝试将其解析为 Unix 时间戳(自 January 1 1970 00:00:00 GMT 起的秒数),其值相对于 n

将自定义时间格式的时间字符串转成C#标准DateTime时间

今天遇到个问题,将"yyyyMMddHHmmss"直接用Convert.ToDateTime()转换时抛出个FormatException:该字符串未被识别为有效的 DateTime. 到网上搜索了一下,找到了解决方案: string time1 = "20150123134045"; DateTime dt1 = DateTime.ParseExact(time1, "yyyyMMddHHmmss", CultureInfo.CurrentCu

Javascript里面的时间处理:将时间戳或时间对象转成字符串格式

问题背景:想把一个时间直接转成字符串格式 通过查api发现有个toLocaleString(),根据本地时间格式,把 Date 对象转换为字符串 new Date().toLocaleString(); //"2018/5/31 下午1:43:06" 但是默认是12小时制,会带这种上午下午,所以肯定不需要,继续查,发现可以配置 var ss = new Date().getTime() + 3600000; (new Date(ss).toLocaleString('chinese',

mysql 时间转换 用EXCEL实现MySQL时间戳格式和日期格互转

今天项目表中需要导入好几w条数据 ,但日期由两个一个是标准时间一个为时间戳,程序中搜索是根据时间戳来搜索的,所以在网上翻箱倒柜的终于找到解决之道了,利用excel转换时间戳 时间戳转成正常日期的公式:B1=(A1+8*3600)/86400+70*365+19其中A1表示当时的1249488000数值其中B1就是你需要的结果,B1单元格属性改成日期格式就可以了.正常日期转为时间戳格式公式:A1=(C1-70*365-19)*86400-8*3600其中C1表示当时的1249488000数值其中A

java日期格式大全 format SimpleDateFormat

/**    * 字符串转换为java.util.Date<br>    * 支持格式为 yyyy.MM.dd G 'at' hh:mm:ss z 如 '2002-1-1 AD at 22:10:59 PSD'<br>    * yy/MM/dd HH:mm:ss 如 '2002/1/1 17:55:00'<br>    * yy/MM/dd HH:mm:ss pm 如 '2002/1/1 17:55:00 pm'<br>    * yy-MM-dd HH: