# 调整系统时区 cp /usr/share/zoneinfo/Asia/Chongqing /etc/localtime # 手动更新 ntpdate ntp.sjtu.edu.cn 202.120.2.101 # 系统每次启动进行更新echo "ntpdate ntp.sjtu.edu.cn 2 ...
分类:
系统相关 时间:
2017-04-03 22:52:39
阅读次数:
207
时间有三种格式:struct_time(tuple) 时间戳 时间字符串 time.time() #距1970到现在的时间戳 多少秒 将时间戳转为struct_time: time.gtime(time.time()) 为UTC时间 time.localtime()为UTC时间 两者参数为时间戳(秒 ...
分类:
其他好文 时间:
2017-04-03 21:18:07
阅读次数:
132
LocalDateTime LocalDateTime是JDK8中才引入的类,用来表示不包含时区信息的本地日期和时间。我们可以把LocalDateTime看作是LocalDate和LocalTime的一个组合类。同样地,该类是一个不可变类,所以作用于该类对象上的方法都是返回一个该类的新对象。 通常, ...
分类:
其他好文 时间:
2017-04-03 12:07:21
阅读次数:
543
右上角添加时间水印 ffmpeg -i 0.ts -vf drawtext="fontfile=arial.ttf:x=w-tw:fontcolor=white:fontsize=30:text='%{localtime\:%H\\\:%M\\\:%S}'" 123.ts Input #0, mpe ...
分类:
其他好文 时间:
2017-03-31 23:31:42
阅读次数:
876
https://www.unixmen.com/install-configure-ftp-server-centos-7/ vsftpd (Very Secure File Transport Protocol Daemon) is a secure, fast FTP server for Un ...
分类:
其他好文 时间:
2017-03-31 23:02:10
阅读次数:
142
C语言的时间函数 头文件time.h 相关函数和接口asctime() 将时间日期以字符串格式表示ctime() 将时间日期以字符串格式表示gettimeofday() 获取当前时间gmtime() 获取当前时间和日期localtime() 获取当前时间和日期并转换为本地时间mktime() 将时间 ...
分类:
编程语言 时间:
2017-03-27 15:27:35
阅读次数:
192
#include <time.h> time_t timep; struct tm *p; time(&timep); p=localtime(&timep); int logminute = p->tm_min/10*10; int loghour=p->tm_hour; if(logminute ...
分类:
编程语言 时间:
2017-03-27 11:06:12
阅读次数:
182
Python 日期和时间 Python 程序能用很多方式处理日期和时间,转换日期格式是一个常见的功能。 Python 提供了一个 time 和 calendar 模块可以用于格式化日期和时间。 时间间隔是以秒为单位的浮点小数。 每个时间戳都以自从1970年1月1日午夜(历元)经过了多长时间来表示。 ...
分类:
编程语言 时间:
2017-03-26 23:32:54
阅读次数:
201
time模块中有三种时间的表示方式:时间戳(时间戳就是从1970年1月1日至今过了多少秒。)结构化时间。字符串时间。一.显示时间戳time.time():显示当前时间的时间戳。printtime.time()>>>1490326825.62二.显示当前结构化时间。time.localtime():显示当前时间的结构化时..
分类:
编程语言 时间:
2017-03-24 21:05:53
阅读次数:
164
mutex = threading.Lock() mutex.acquire()--锁住 mutex.release() --解锁 # coding:utf-8 import threading import time mutex = threading.Lock() def write(scan_... ...
分类:
编程语言 时间:
2017-03-24 17:31:41
阅读次数:
208