struct tm->time() localtime() gmtime()struct tm {int tm_sec; /*代表目前秒数,正常范围为0-59,但允许至61秒 */int tm_min; /*代表目前分数,范围0-59*/int tm_hour; /*从午夜算起的时数,范围为0-23...
分类:
其他好文 时间:
2015-05-04 13:23:28
阅读次数:
154
time_t?tt;
time(&tt);
struct?tm?*?now;
//获得本地时间
now?=?localtime(&tt);
log("%d/%d/%d?%d:%d:%d",?now->tm_year?+?1900,?now->tm_mon?+?1,
now->tm_mday,?now->tm_hour,?now->tm...
分类:
其他好文 时间:
2015-04-28 23:05:48
阅读次数:
267
time_t timer; time(&timer); struct tm tm; localtime_s(&tm, &timer); int year = tm.tm_year + 1900; int month = tm.tm_mon + 1; int day = tm.tm_mday; str...
分类:
编程语言 时间:
2015-04-22 09:27:50
阅读次数:
130
--python实现两个文件并集,排序,计数 --(1)python版本2.3以上,低版本的python不支持set(),本文采用的是python2.7。 import sys import time time_start=time.strftime(‘%Y-%m-%d %H:%M:%S‘,time.localtime(tim...
分类:
编程语言 时间:
2015-04-21 18:51:18
阅读次数:
131
#coding:utf-8
#time时间模块
importtime
printtime.time()#时间戳
printtime.ctime()#现在时间
printtime.gmtime()#UTC时区时间
printtime.localtime()#本地时区与UTC时区相差8小时
printtime.ctime(1429448790.46)#将时间戳转化为可视时间
time1=time.ctime(1429448790.46..
分类:
其他好文 时间:
2015-04-20 07:06:10
阅读次数:
161
flume写hdfs的操作在HDFSEventSink.process方法中,路径创建由BucketPath完成分析其源码(参考:http://caiguangguang.blog.51cto.com/1652935/1619539)可以使用%{}变量替换的形式实现,只需要获取event中时间字段(nginx日志的localtime)传入hdfs.path即可具体实现如下:1...
分类:
Web程序 时间:
2015-04-19 19:37:36
阅读次数:
156
MySQL日期时间的处理,在其官网文档上都有详细的阐述,想了解更多的同学可自行查阅。1.查询当前日期时间:函数有now(),localtime(),current_timestamp(),sysdate()。mysql> select now(),localtime(),current_timest...
分类:
数据库 时间:
2015-04-16 12:25:13
阅读次数:
247
使用gmtime函数或localtime函数将time_t类型的时间日期转换为struct tm类型: 使用time函数返回的是一个long值,该值对用户的意义不大,一般不能根据其值确定具体的年、月、日等数据。gmtime函数可以方便的对time_t类型数据进行转换,将其转换为tm结构的数据方便数....
分类:
其他好文 时间:
2015-04-16 01:26:49
阅读次数:
650
gmtime函数与localtime函数的区别: gmtime函数返回的时间日期未经时区转换,是UTC时间(又称为世界时间,即格林尼治时间)。 localtime函数返回当前时区的时间, 转换日期时间表示形式time_t类型转换为struct tm类型示例: #include #inclu...
分类:
其他好文 时间:
2015-04-16 01:26:45
阅读次数:
2234
时间的运用#coding=utf-8#!user/bin/pythonimport timeimport calendarticks = time.asctime(time.localtime())print ticksprint '-------------------------------'p...
分类:
编程语言 时间:
2015-04-15 18:53:32
阅读次数:
118