转自:http://blog.163.com/javy1225@126/blog/static/459230342009230115919910/一.CTime转化为CStringCTime tmSCan = CTime::GetCurrentTime();CString szTime = tmScan.Format("'%Y-%m-%d %H:%M:%S'");这样得到的日期时间字符串就是以"2006-11-27 23:30:59"的格式.这是不是很方便呢?//取得CTime中的日期CString cstrDate = tmScan.Format("%Y-%m-%d");//取得CTime中的时间CString cstrTime = tmScan.Format("%H:%M-%S");二.CString转化为CTime的几种方法CString timestr = "2000年04月05日";int a,b,c ;sscanf(timestr.GetBuffer(timestr.GetLength()),"%d年%d月%d日",&a;,&b;,&c;);CTime time(a,b,c,0,0,0);--------or - ---------------------CString s("2001-8-29 19:06:23");int nYe
...
继续阅读
(21)