如何用c++将一个时间点转换成时间戳
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何用c++将一个时间点转换成时间戳相关的知识,希望对你有一定的参考价值。
时间戳转格式化。
时间戳转格式化。
格式化转时间戳。
ystemTimeToVariantTime。VariantTimeToSystemTime。
VariantTime是个double类型,单位是天,很便于计算。
SYSTEMTIME是包含年月日时分秒毫秒的一个结构体,便于分析处理。
#include<stdioh>#include<time.h>int main(int argc, const char * argv[time_t t;struct tm *p。
t=1384936600;p=gmtime(&t)char s[100];strftime(s, sizeof(s), "%Y%m%d %H:%M:%S", p);printf("%d%s\\n", (int)t, s);return 0。
#include<stdio.h>#include <time.h>int main(int argcconst char * argv[struct tm* tmp_time = (struct tm*)malloc(sizeof(struct tm));strptime("20131120","%Y%m%dtmp_time);time_t t = mktime(tmp_time);printf("%ld\\n",t),free(tmp_time)return 0。
时间戳转格式化
#include <stdio.h>#include <time.h>
int main(int argc, const char * argv[])
time_t t;
struct tm *p;
t=1384936600;
p=gmtime(&t);
char s[100];
strftime(s, sizeof(s), "%Y-%m-%d %H:%M:%S", p);
printf("%d: %s\\n", (int)t, s);
return 0;
格式化转时间戳
#include <stdio.h>#include <time.h>
int main(int argc, const char * argv[])
struct tm* tmp_time = (struct tm*)malloc(sizeof(struct tm));
strptime("20131120","%Y%m%d",tmp_time);
time_t t = mktime(tmp_time);
printf("%ld\\n",t);
free(tmp_time);
return 0;
本回答被提问者采纳 参考技术B 转成毫秒? 。。。。。。。。。自己乘出来就可以了
如何将android时间戳转换成时间
时间戳就是如1377216000000 这种格式我们在mysql数据库中会经常用到把时间转换成时间戳或把时间戳转换成日期格式了,下面我来介绍安卓中时间戳操作转换方法。一、原理
时间戳的原理是把时间格式转为十进制格式,这样就方便时间的计算。好~ 直接进入主题。(下面封装了一个类,有需要的同学可以参考或是直接Copy 就可以用了。)
如: 2013年08月23日 转化后是 1377216000000
二、步骤
1、创建 DateUtilsl类。
代码如下 复制代码
importjava.text.ParseException;
importjava.text.SimpleDateFormat;
importjava.util.Date;
/*
* @author Msquirrel
*/
public class DateUtils
privateSimpleDateFormat sf = null;
/*获取系统时间 格式为:"yyyy/MM/dd "*/
public static String getCurrentDate()
Date d = newDate();
sf = newSimpleDateFormat("yyyy年MM月dd日");
returnsf.format(d);
/*时间戳转换成字符窜*/
public static String getDateToString(long time)
Date d = newDate(time);
sf = newSimpleDateFormat("yyyy年MM月dd日");
returnsf.format(d);
/*将字符串转为时间戳*/
public static long getStringToDate(String time)
sdf = newSimpleDateFormat("yyyy年MM月dd日");
Date date = newDate();
try
date = sdf.parse(time);
catch(ParseException e)
// TODO Auto-generated catch block
e.printStackTrace();
returndate.getTime();
2、在对应使用的地方调用就可以了。
代码如下 复制代码
DateUtils.getCurrentDate(); //获取系统当前时间
DateUtils.getDateToString(时间戳); //时间戳转为时间格式
DateUtils.getStringToDate("时间格式");//时间格式转为时间戳 参考技术A 日期和时间中设置
以上是关于如何用c++将一个时间点转换成时间戳的主要内容,如果未能解决你的问题,请参考以下文章