時間類的簡單使用

2021-09-02 23:07:42 字數 801 閱讀 2922

1.常用方法和類

1.******dateformat sdf = new ******dateformat(「yyyy-mm-dd」)自定義日期格式

2.sdf.parse方法是將string型別的時間轉化為date型別,根據你定義的日期格式,進行格式擷取,轉化為 date型別,會自動補全後面的年月日時分秒。

******dateformat sdf = new ******dateformat("yyyy-mm");

string a="2018-9-24";

try catch (parseexception e) catch (parseexception e)

輸出結果:mon dec 10 23:46:11 cst 2018

2018-12

mon dec 10 23:46:11 cst 2018

tue may 01 00:00:00 cst 2018

2.calendar的各種方法:(有問題)

******dateformat sdf = new ******dateformat("yyyy-mm");

string a="2018-1-11";

calendar instance = calendar.getinstance();

try catch (parseexception e)

輸出結果:mon jan 01 00:00:00 cst 2018

sun feb 10 23:52:49 cst 2019

string類的簡單使用

2017年7月4日 望各位大佬批評指正 string類使用起來比陣列更簡單,要使用string類,必須在程式中包含標頭檔案string。string類位於命名空間std中,因此您必須提供一條using編譯指令。string隱藏了字串的陣列性質,讓您可以像處理普通變數那樣處理字串。include in...

簡單的使用列舉類

列舉類使用例子 public enum systemusertype public string getlabel public static systemusertype getenum string name for systemusertype enums values return null...

File 類的簡單使用

分隔符 test public void test01 檔案的相關屬性 test public void test02 建立檔案 test public void test03 判斷該檔案是否存在 boolean flag false if file.exists catch ioexception...