前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >小工具:同步系统时间

小工具:同步系统时间

作者头像
超级大猪
发布2019-11-22 14:36:00
5600
发布2019-11-22 14:36:00
举报
文章被收录于专栏:大猪的笔记

写了份代码,用来同步windows时间。

代码语言:javascript
复制
package main

import (
    "fmt"
    "net/http"
    "os/exec"
    "strings"
    "time"
)

func main() {
    resp, err := http.Get("http://www.baidu.com")
    if err != nil {
        // handle error
    }
    defer resp.Body.Close()
    respDateStr := string(resp.Header["Date"][0])
    t, _ := time.Parse("Mon, 02 Jan 2006 15:04:05 MST", respDateStr)
    loc, _ := time.LoadLocation("Asia/Chongqing")

    timeStr := t.In(loc).String()
    dateStr := strings.Split(timeStr, " ")[0]
    hourStr := strings.Split(timeStr, " ")[1]
    fmt.Println("Net time is ", dateStr, hourStr)

    exec.Command("cmd", "/C", "date "+dateStr).Output()
    exec.Command("cmd", "/C", "time "+hourStr).Output()

    time.Sleep(time.Second * 2)
}

下载: synctime.zip

顺便做了个linux的python3版

代码语言:javascript
复制
import datetime
import urllib.request
import subprocess

resp=urllib.request.urlopen('http://www.baidu.com', timeout=8)
date = resp.headers["Date"] # like :Sat, 31 Dec 2016 14:54:43 GMT

utc_datetime = datetime.datetime.strptime(date, "%a, %d %b %Y %H:%M:%S %Z")
beijing_time = utc_datetime + datetime.timedelta(hours=8)

subprocess.check_output("date -s \"{}\"".format(beijing_time), shell=True)
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2016-12-17 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档