C#字串轉換為日期時間格式及其錯誤處理

來源:互聯網
上載者:User

 

文章關鍵字: c#字串轉換為日期 c#日期轉換字串   字串轉換日期   字串轉換為date   整數轉換為字串   浮點數轉換為字串 字串轉換為時間   將字串轉換為時間   字元轉換為字串   字串轉換為時間 對象 字串轉換為日期型 字串轉換成日期

√字串轉換為日期型(C#)

如:"20100101"轉換成日期型?

"20100101"轉換成int型怎麼轉換??

1、DateTime dt=Convert.ToDateTime("20100101".Substring(0,4)+"-"+"20100101".Substring(4,2)+"-"+"20071107".Substring(6,2)); 
int i=Convert.ToInt32("20100101");

2、Convert.ToDateTime、DateTime.Parse()

3、string str = "20100101";
DateTime dt = DateTime.ParseExact(str, "yyyyMMdd", null);
int i;
int.TryParse(str, out i);

4、定義一個DateTimePicker對象,然後將需要轉化的字串賦給這個DateTimePicker對象的Text屬性, 
然後DateTimePicker對象的Value值就是你需要的日期和時間,Value值還有Minite,Second等屬性,可以取得 
時,分,秒,豪秒等值. 

 

√JAVA字串轉換成日期時間格式

   //日期時間格式:yyyy-MM-dd hh:mm:ss
    String time ="1900-02-21 12:23:33";
    //將字串轉換為日期和時間
    SimpleDateFormat dateformat = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
    //產生的日期和時間
    Date date = dateformat .parse(time);

date就是我們想要的

 

如果程式中有2個或2個以上的地方調用了dateformat.parse()方法,則有可能會報錯:Unhandled exception type ParseException。

為此,需要利用try-catch塊來捕捉:

  try{
            dateformat .parse(time);
        } catch(Exception e) {
            e.printStackTrace();
        } 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.