Date 字串 long型的三者之間的轉化

2021-08-19 20:41:18 字數 1359 閱讀 7571

[html] 

view plain

copy

// date型別轉換為string型別  

// formattype格式為yyyy-mm-dd hh:mm:ss//yyyy年mm月dd日 hh時mm分ss秒  

// data date型別的時間  

public static string datetostring(date data, string formattype)   

// long型別轉換為string型別  

// currenttime要轉換的long型別的時間  

// formattype要轉換的string型別的時間格式  

public static string longtostring(long currenttime, string formattype)  

throws parseexception   

// string型別轉換為date型別  

// strtime要轉換的string型別的時間,formattype要轉換的格式yyyy-mm-dd hh:mm:ss//yyyy年mm月dd日  

// hh時mm分ss秒,  

// strtime的時間格式必須要與formattype的時間格式相同  

public static date stringtodate(string strtime, string formattype)  

throws parseexception   

// long轉換為date型別  

// currenttime要轉換的long型別的時間  

// formattype要轉換的時間格式yyyy-mm-dd hh:mm:ss//yyyy年mm月dd日 hh時mm分ss秒  

public static date longtodate(long currenttime, string formattype)  

throws parseexception   

// string型別轉換為long型別  

// strtime要轉換的string型別的時間  

// formattype時間格式  

// strtime的時間格式和formattype的時間格式必須相同  

public static long stringtolong(string strtime, string formattype)  

throws parseexception  else   

}  // date型別轉換為long型別  

// date要轉換的date型別的時間  

public static long datetolong(date date)  

時間戳,時間元組,字串三者的轉換

1.時間戳 時間元組 time1 time.time tuple time.gmtime time1 utc時間 print tuple tuple1 time.localtime time1 utc 8 時間 print tuple1 2.時間元組 時間戳 tuple2 time.localtim...

帶T和Z的時間字串轉Long型

帶t和z的時間字串 string time 2017 11 18t07 12 06.615z 思路 1.先將最後的字母 z 替換為 utc 注意在utc前面有個空格!time time.replace z utc 2.使用常規的 dateformat來轉換 dateformat format new...

Python中字串,列表,元組三者之間相互轉換

1.字串轉換成列表 str lara1798 print list str 執行結果 l a r a 1 7 9 8 2.列表轉換成字串 join函式 alist name age 18 print join alist 執行結果 nameage18 3.列表轉換成元組 tuple alist na...