VC/MFC获取网络时间 做时间限制用
VC/MFC获取网络时间利用了国家时间中心网页来获取的
CString GetNettime() //获取网络时间
{
CInternetSession mySession(NULL,0);
CHttpFile* myHttpFile=NULL;
CString t;
CString d;
myHttpFile=(CHttpFile*)mySession.OpenURL("http://www.symental.com/time/date.asp");
myHttpFile->ReadString(d);
myHttpFile=(CHttpFile*)mySession.OpenURL("http://www.symental.com/time/time.asp");
myHttpFile->ReadString(t);
myHttpFile->Close ;
mySession.Close ;
return d+ " " + t;
}
页:
[1]