StrToTime.cpp
上传用户:trilite
上传日期:2007-04-24
资源大小:261k
文件大小:1k
源码类别:

酒店行业

开发平台:

Visual C++

  1. // StrToTime.cpp: implementation of the StrToTime class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #include "stdafx.h"
  5. #include "StrToTime.h"
  6. #ifdef _DEBUG
  7. #undef THIS_FILE
  8. static char THIS_FILE[]=__FILE__;
  9. #define new DEBUG_NEW
  10. #endif
  11. //////////////////////////////////////////////////////////////////////
  12. // Construction/Destruction
  13. //////////////////////////////////////////////////////////////////////
  14. CStrToTime::CStrToTime()
  15. {
  16. }
  17. CStrToTime::~CStrToTime()
  18. {
  19. }
  20. CTime CStrToTime::FormatDateTime(CString strTime)
  21. {
  22. int year,month,day,hour,minute,second;
  23. year = atoi(strTime.Mid(0,4));
  24. month = atoi(strTime.Mid(5,2));
  25. day = atoi(strTime.Mid(8,2));
  26. hour = atoi(strTime.Mid(11,2));
  27. minute = atoi(strTime.Mid(14,2));
  28. if (strTime.GetLength() >= 17) 
  29. {
  30. second = atoi(strTime.Mid(17,2));
  31. }
  32. else
  33. {
  34. second = 0;
  35. }
  36. CTime time(year,month,day,hour,minute,second,-1);
  37. return time;
  38. }
  39. CTime CStrToTime::FormatDate(CString strTime)
  40. {
  41. int year,month,day;
  42. year = atoi(strTime.Mid(0,4));
  43. month = atoi(strTime.Mid(5,2));
  44. day = atoi(strTime.Mid(8,2));
  45. CTime time(year,month,day,12,0,0,-1);
  46. return time;
  47. }
  48. CTime CStrToTime::FormatTime(CString strTime)
  49. {
  50. int hour,minute,second;
  51. hour = atoi(strTime.Mid(0,2));
  52. minute = atoi(strTime.Mid(3,2));
  53. if (strTime.GetLength() >= 6) 
  54. {
  55. second = atoi(strTime.Mid(6,2));
  56. }
  57. else
  58. {
  59. second = 0;
  60. }
  61. CTime time(2000,1,1,hour,minute,second,-1);
  62. return time;
  63. }