//將轉換日期用方法表示 返回值為日期 public static DateformatFullDate(String s){ //定義需要轉換的格式 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //將s轉換成日期格式 利用SimpleDateFormat內中的parse方法 Date d = sdf.parse(s); return d; }
时间: 2024-10-16 07:27:35
//將轉換日期用方法表示 返回值為日期 public static DateformatFullDate(String s){ //定義需要轉換的格式 SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //將s轉換成日期格式 利用SimpleDateFormat內中的parse方法 Date d = sdf.parse(s); return d; }