C#,Asp.NET 匯入Excel,時間格式一串數字轉換.

來源:互聯網
上載者:User

標籤:

在Excel中.日期或者時間格式為:42093.6506944444 或者 0.650694444444444

大於0 表示有日期(2015-03-30),小於零則是時間(15:37)

在C# 匯入讀取這列時,轉換會發生錯誤;

現在將這格式轉換為正常的日期格式:如下

 1 /// <summary> 2     /// 數字轉換時間格式 3     /// </summary> 4     /// <param name="timeStr">數字,如:42095.7069444444/0.650694444444444</param> 5     /// <returns>日期/時間格式</returns> 6     private string ToDateTimeValue(string strNumber) 7     { 8         if (!string.IsNullOrWhiteSpace(strNumber)) 9         {10             Decimal tempValue;11             //先檢查 是不是數字;12             if (Decimal.TryParse(strNumber, out tempValue))13             {14                 //天數,取整15                 int day = Convert.ToInt32(Math.Truncate(tempValue));16                 //這裡也不知道為什麼. 如果是小於32,則減1,否則減217                 //日期從1900-01-01開始累加 18                 // day = day < 32 ? day - 1 : day - 2;19                 DateTime dt = new DateTime(1900, 1, 1).AddDays(day < 32 ? (day - 1) : (day - 2));20 21                 //小時:減掉天數,這個數字轉換小時:(* 24) 22                 Decimal hourTemp = (tempValue - day) * 24;//擷取小時數23                 //取整.小時數24                 int hour = Convert.ToInt32(Math.Truncate(hourTemp));25                 //分鐘:減掉小時,( * 60)26                 //這裡舍入,否則取值會有1分鐘誤差.27                 Decimal minuteTemp = Math.Round((hourTemp - hour) * 60, 2);//擷取分鐘數28                 int minute = Convert.ToInt32(Math.Truncate(minuteTemp));29                 //秒:減掉分鐘,( * 60)30                 //這裡舍入,否則取值會有1秒誤差.31                 Decimal secondTemp = Math.Round((minuteTemp - minute) * 60, 2);//擷取秒數32                 int second = Convert.ToInt32(Math.Truncate(secondTemp));33 34                 //時間格式:00:00:0035                 string resultTimes = string.Format("{0}:{1}:{2}",36                         (hour < 10 ? ("0" + hour) : hour.ToString()),37                         (minute < 10 ? ("0" + minute) : minute.ToString()),38                         (second < 10 ? ("0" + second) : second.ToString()));39 40                 if (day > 0)41                     return string.Format("{0} {1}", dt.ToString("yyyy-MM-dd"), resultTimes);42                 else43                     return resultTimes;44             }45         }46         return string.Empty;47     }

 

C#,Asp.NET 匯入Excel,時間格式一串數字轉換.

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.