常用的日期格式

来源:http://www.cnblogs.com/JsonZhangAA/archive/2016/06/15/5588883.html
-Advertisement-
Play Games

今天遇到了一個關於日期的問題,需要將2016-6-15 20:23:23這種形式的時間字元串轉換為2016年6月15日,由於學習經驗少,但是懵逼了0.0, 後來百度找到了相關方法。同時,也將常用的日期轉換方法的用法保存下來。供大家學習查閱。 我的代碼: 運行結果: ...


  今天遇到了一個關於日期的問題,需要將2016-6-15 20:23:23這種形式的時間字元串轉換為2016年6月15日,由於學習經驗少,但是懵逼了0.0,

後來百度找到了相關方法。同時,也將常用的日期轉換方法的用法保存下來。供大家學習查閱。

我的代碼:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace 常用的時間格式
{
    class Program
    {
        static void Main(string[] args)
        {
            DateTime dt = DateTime.Now;
            Console.WriteLine(dt.ToString());
            Console.WriteLine("轉換後的格式為:");
            Console.WriteLine("ToShortDateString" + dt.ToShortDateString());
            Console.WriteLine("ToLongDateString" + dt.ToLongDateString());
            Console.WriteLine("ToFileTime" + dt.ToFileTime().ToString());
            Console.WriteLine("ToFileTimeUtc" + dt.ToFileTimeUtc().ToString());
            Console.WriteLine("ToLocalTime" + dt.ToLocalTime().ToString());
            Console.WriteLine("ToLongDateString" + dt.ToLongDateString().ToString());
            Console.WriteLine("ToLongTimeString" + dt.ToLongTimeString().ToString());
            Console.WriteLine("ToOADate" + dt.ToOADate().ToString());
            Console.WriteLine("ToShortDateString" + dt.ToShortDateString().ToString());
            Console.WriteLine("ToShortTimeString" + dt.ToShortTimeString().ToString());
            Console.WriteLine("ToUniversalTime" + dt.ToUniversalTime().ToString());
            Console.WriteLine("Year" + dt.Year.ToString());
            Console.WriteLine("Date" + dt.Date.ToString());
            Console.WriteLine("DayOfWeek" + dt.DayOfWeek.ToString());
            Console.WriteLine("DayOfYear" + dt.DayOfYear.ToString());
            Console.WriteLine("Hour" + dt.Hour.ToString());
            Console.WriteLine("Millisecond" + dt.Millisecond.ToString());
            Console.WriteLine("Minute" + dt.Minute.ToString());
            Console.WriteLine("Month" + dt.Month.ToString());
            Console.WriteLine("Second" + dt.Second.ToString());
            Console.WriteLine("Ticks" + dt.Ticks.ToString());
            Console.WriteLine("TimeOfDay"+dt.TimeOfDay.ToString());
            Console.WriteLine("AddYears(1)"+dt.AddYears(1).ToString());
            Console.WriteLine("AddDays(1.1)"+dt.AddDays(1.1).ToString());
            Console.WriteLine("AddHours(1.1)"+dt.AddHours(1.1).ToString());
            Console.WriteLine("AddMilliseconds"+dt.AddMilliseconds(1.1).ToString());
            Console.WriteLine("AddMonths(1)"+dt.AddMonths(1).ToString());
            Console.WriteLine("AddSeconds(1.1)"+dt.AddSeconds(1.1).ToString());
            Console.WriteLine("AddMinutes(1.1)"+dt.AddMinutes(1.1).ToString());
            Console.WriteLine("AddTicks(1000)"+dt.AddTicks(1000).ToString());
            Console.WriteLine("CompareTo"+dt.CompareTo(dt).ToString());
            Console.WriteLine("Equals(2005-11-6 16:11:04)" + dt.Equals("2005-11-6 16:11:04").ToString());
            Console.WriteLine("Equals(dt)"+dt.Equals(dt).ToString());
            Console.WriteLine("GetHashCode"+dt.GetHashCode().ToString());
            Console.WriteLine("GetType"+dt.GetType().ToString()); 
            Console.WriteLine("GetTypeCode"+dt.GetTypeCode().ToString()); 
            Console.WriteLine("GetDateTimeFormats(s)[0]"+dt.GetDateTimeFormats('s')[0].ToString()); 
            Console.WriteLine("GetDateTimeFormats(t)[0]"+dt.GetDateTimeFormats('t')[0].ToString()); 
            Console.WriteLine("GetDateTimeFormats(y)[0]"+dt.GetDateTimeFormats('y')[0].ToString()); 
            Console.WriteLine("GetDateTimeFormats(D)[0]"+dt.GetDateTimeFormats('D')[0].ToString()); 
            Console.WriteLine("GetDateTimeFormats(D)[1]"+dt.GetDateTimeFormats('D')[1].ToString()); 
            Console.WriteLine("GetDateTimeFormats('D')[2]"+dt.GetDateTimeFormats('D')[2].ToString()); 
            Console.WriteLine("GetDateTimeFormats('D')[3]"+dt.GetDateTimeFormats('D')[3].ToString()); 
            Console.WriteLine("GetDateTimeFormats('M')[0]"+dt.GetDateTimeFormats('M')[0].ToString()); 
            Console.WriteLine("GetDateTimeFormats('f')[0]"+dt.GetDateTimeFormats('f')[0].ToString()); 
            Console.WriteLine("GetDateTimeFormats('g')[0]"+dt.GetDateTimeFormats('g')[0].ToString());
            Console.WriteLine("GetDateTimeFormats('r')[0]" + dt.GetDateTimeFormats('r')[0].ToString()); 
            Console.WriteLine("Format({0:d}"+string.Format("{0:d}", dt));
            Console.WriteLine("Format({0:D}" + string.Format("{0:D}", dt));
            Console.WriteLine("Format({0:f}" + string.Format("{0:f}", dt));
            Console.WriteLine("Format({0:F}" + string.Format("{0:F}", dt));
            Console.WriteLine("Format({0:g}" + string.Format("{0:g}", dt));
            Console.WriteLine("Format({0:G}" + string.Format("{0:G}", dt));
            Console.WriteLine("Format({0:M}" + string.Format("{0:M}", dt));
            Console.WriteLine("Format({0:R}" + string.Format("{0:R}", dt));
            Console.WriteLine("Format({0:s}" + string.Format("{0:s}", dt));
            Console.WriteLine("Format({0:t}" + string.Format("{0:t}", dt));
            Console.WriteLine("Format({0:T}" + string.Format("{0:T}", dt));
            Console.WriteLine("Format({0:u}" + string.Format("{0:u}", dt));
            Console.WriteLine("Format({0:U}" + string.Format("{0:U}", dt));
            Console.WriteLine("Format({0:Y}" + string.Format("{0:Y}", dt));
            Console.WriteLine("Format({0}" + string.Format("{0}", dt));
            Console.WriteLine("Format({0:yyyyMMddHHmmssffff}" + string.Format("{0:yyyyMMddHHmmssffff}", dt));
            Console.Read();
        }
    }
}

運行結果:

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 背水一戰 Windows 10 之 動畫: ThemeTransition 的概述, EntranceThemeTransition - 頁面間跳轉時的過渡效果, ContentThemeTransition - 內容改變時的過渡效果, RepositionThemeTransition - 位置改... ...
  • 目錄 前言 最近使用 "ABP(ASP.NET Boilerplate)" 做項目,有些查詢(或存儲過程)直接使用sql語句會更方便一點。 定義一個介面 在Core項目中定義一個介面,如:ISqlExecuter 實現介面 項目中使用的是EF,因此在EntityFramework項目中實現該介面 使 ...
  • using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Collections; using System.Web; using System.Web.Cac ...
  • 五月中旬 .NET Core RC2 如期發佈,我們遂決定翻譯 ASP.NET Core 文檔。我們在何鎮汐先生、悲夢先生、張仁建先生和雷歐納德先生的群中發佈了翻譯計劃招募信息,並召集到一群小伙伴。我們從六月開始翻譯文檔,目前已完成前兩章,並將按計劃以連載的方式逐篇公佈。當翻譯計劃完成後,所有文檔將... ...
  • ...
  • 前天去面試,讓我說下生命周期,本來之前就瞭解過,但是沒說出來,被深深的鄙視了;今天弄了一上午,現在發到這分享一下,有什麼錯誤請各位大牛們指出~~ 昨天面試,又遇到這問題了... 然後說了半天,人家問我一用戶控制項的周期在哪執行,我想了半天,也沒有想出來,回來只好再研究了.. 請求的本頁面Page-Lo ...
  • ...
  • FileAccess Enumeration 定義用於文件讀取、寫入訪問許可權的常數。此枚舉有一個FlagsAttribute特性,通過該特性可使其成員值按位組合。(命名空間:System.IO) 語法 [SerializableAttribute] [FlagsAttribute] [ComVisi... ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...