/* GNU s_time is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version. Function: Read Date and Time from Server or local machine. Author: Tody Kwok Built Date: 2010/01/14 Update Copyritht by Tody 2010 */ #include <stdio.h> #include <time.h> #include <string.h> #include <windows.h> #include <assert.h> #include <lm.h> #include <getopt.h> #ifndef UNICODE #define UNICODE #endif char *assicToUnicode(char *unicode, const char *assic) { char *temp = unicode; assert((assic!=NULL && unicode!=NULL)); while( (*temp++=*assic++)!=0 ) *temp++='/0'; *temp='/0'; return unicode; } time_t remote_server_time( LPWSTR pszServerName1 , int flag) { LPTIME_OF_DAY_INFO pBuf = NULL; NET_API_STATUS nStatus; time_t svr_time1 = 0; time_t svr_time2 = 0; struct tm *o; nStatus = NetRemoteTOD(pszServerName1,(LPBYTE *)&pBuf); /* Windows API: Net Remote Time of Day */ if (nStatus == NERR_Success) { if (pBuf != NULL) { svr_time1 = pBuf->tod_elapsedt; svr_time2 = pBuf->tod_elapsedt - pBuf->tod_timezone*60; /* Make time with time zone information*/ o = gmtime(&svr_time2); /* Convert seconds passed to Date and time format */ if ( flag ) fprintf(stderr,"/n :) Current Server Time: %04d-%02d-%02d %02d:%02d:%02d <%u>",o->tm_year+1900, o->tm_mon+1, o->tm_mday, o->tm_hour,o->tm_min, o->tm_sec,svr_time1); if ( flag == 2 ) { printf("/n set s_date=%02d%02d%04d/n set s_date1=%04d-%02d-%02d/n set S_time=%02d:%02d:%02d", o->tm_mon+1, o->tm_mday,o->tm_year+1900,o->tm_year+1900, o->tm_mon+1, o->tm_mday, o->tm_hour,o->tm_min, o->tm_sec); } NetApiBufferFree(pBuf); /* Free */ } } else { fprintf(stderr, "A system error has occurred: %d/n", nStatus); exit(1) ; } return (svr_time1); } time_t sys_local_time(int flag) { time_t t; struct tm *l; t = time(NULL); l = localtime(&t); /* get local time */ if ( flag ) fprintf(stderr,"/n :) Current System Time: %04d-%02d-%02d %02d:%02d:%02d <%u>",l->tm_year+1900, l->tm_mon+1, l->tm_mday, l->tm_hour,l->tm_min, l->tm_sec,t); if ( flag == 2 ) { printf("/n set l_date=%02d%02d%04d/n set l_date1=%04d-%02d-%02d/n set l_time=%02d:%02d:%02d", l->tm_mon+1, l->tm_mday,l->tm_year+1900,l->tm_year+1900, l->tm_mon+1, l->tm_mday, l->tm_hour,l->tm_min, l->tm_sec); } return (t); } void usage() { /* Here is document */ fprintf(stderr,"Obtain date and time utility 1.0.1 (C) Tody 2010/n"); fprintf(stderr,"Usage:/n"); fprintf(stderr," Option:/n"); fprintf(stderr," -h:/t Help/n"); fprintf(stderr," -H <host>:/t Specifly Host Name (Must)/n"); fprintf(stderr," -s:/t Fetching Server Time, with option -H/n"); fprintf(stderr," -l:/t Show Local Date and Time/n"); fprintf(stderr," -f:/t Don't show the Date and Time/n"); fprintf(stderr," -v:/t For Set Variable settings/n"); fprintf(stderr," -c <sec>:/t Check time different between Server and Local, with option -H/n"); fprintf(stderr,"Return Code:/n"); fprintf(stderr," OK(0): Err(1)/n"); fprintf(stderr,"Example:/n"); fprintf(stderr," 1, s_time.exe -H ShareServer -s/n"); fprintf(stderr," 2, s_time.exe -H ShareServer -s -v/n"); fprintf(stderr," 3, s_time.exe -H ShareServer -c 20/n"); fprintf(stderr," 4, s_time.exe -H ShareServer -s -v > setdate.bat/n"); fprintf(stderr," 5, s_time.exe -l/n"); exit(1); } int main(int argc, char *argv[]) { char *hostname = NULL, buf[256]={NULL}; int sec = 0; int retval = 1, isSetL = 0, isSetS = 0; int ch = 0, flag = 1; while( -1 != ch ) { /* phrase the parameters*/ ch = getopt(argc,argv,"hH:C:c:SslLfFvV"); switch(ch) { case 'h': usage(); case 'H': hostname = optarg; break; case 'C': case 'c': sec = atoi(optarg); break; case 'S': case 's': isSetS = 1; break; case 'l': case 'L': isSetL = 1; break; case 'f': case 'F': flag = 0; break; case 'V': case 'v': flag = 2; break; case '?': usage(); } } if ( argc ==1 || (argc == 3 && hostname != NULL) ) usage(); /* Code here show the result...*/ if ( isSetS && sec == 0){ if ( hostname != NULL ) { fprintf(stderr," Reading Server < %s > time... ",hostname); remote_server_time((WCHAR*)assicToUnicode(buf, hostname), flag); /* function invoke*/ retval = 0; } else usage(); } if ( isSetL ){ sys_local_time(flag); /* Show local time*/ retval = 0; } if ( sec != 0 && hostname != NULL ) { fprintf(stderr," Reading Server < %s > time... ",hostname); ch = abs(remote_server_time((WCHAR*)assicToUnicode(buf, hostname), flag) - sys_local_time(flag)); fprintf(stderr,"/n Different time: %ds",ch); if ( ch > sec ) /* Comparing the time difference */ { retval = 1; } } fprintf(stderr,"/n Return Code = %d/n",retval); /* Error Code showing...*/ return retval; }
问题内容: 我正在使用JavaScript类,并尝试使用方法获取当前日期。但显然是加载系统日期和时间。我正在从印度运行代码,但我想使用相同的方法来获取英国的日期和时间。我怎样才能做到这一点? 问题答案: 如果您知道UTC偏移量,则可以使用以下函数传递它并获取时间:
我有两个实体 我使用带有spring数据的spring boot和最新版本的jpa、hibernate。在文档中,@OneToOne是默认的EAGER,但当我获取EAGER fetch对象时,当我在get方法中不使用@Transactional时,我会得到lazyInitializationException。我不明白为什么。。。 当我将这个方法标记为@Transactional时,这个工作。但是
本文向大家介绍JS获取时间的方法,包括了JS获取时间的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了JS获取时间的方法。分享给大家供大家参考。具体实现方法如下: 希望本文所述对大家的javascript程序设计有所帮助。
我有一个使用redux的应用程序 我也曾在本地获取数据。 在我的反应组件中,我使用来获取数据。但我什么也没得到。 如何在我的组件中获取数据? 演示:https://codesandbox.io/s/nervous-rosalind-lp16j?file=/src/App.js:242-328
问题内容: 我想通过Node.js矩模块获得纽约和香港之间的时差。我已经做了一些初步的工作。 然后,我可以继续编写一个函数,以小时为单位计算两个时区之间的时差。我希望有一个更简单的方法。 矩型库中有更优雅,更简单的方法吗? 问题答案: 不确定“更简单”,但更正确(因为并非所有时区都相隔一个小时):
问题内容: 我想获取UTC时区的时间。所以我写了代码: 问题是输出显示了我的PST时间(我的本地时区)。我需要它来输出UTC时间,以便将其存储在数据库中。 问题答案:
我想要得到UTC时区的时间。所以我写了代码: 问题是输出显示了PST(我的本地时区)中的时间。我需要它以UTC的形式输出时间,这样我就可以把它存储在我的数据库中。
本文向大家介绍Docker 解决获取容器获取的时间不是本地时间的问题,包括了Docker 解决获取容器获取的时间不是本地时间的问题的使用技巧和注意事项,需要的朋友参考一下 docker 获取容器获取的时间出错问题解决: 在使用Docker部署网站的时候,无意间发现容器里面的时间竟然是美国时间,被雷到了,不过解决办法也很简单,有两种办法 1、重新启动一个容器,加上如下参数,即可使用宿主机时间 $ -