发布网友 发布时间:2022-05-09 08:39
共3个回答
热心网友 时间:2024-01-29 13:01
楼上回答的很详细了,热心网友 时间:2024-01-29 13:01
public static String getDetailDate() {热心网友 时间:2024-01-29 13:02
import java.util.Date; import java.text.ParseException; import java.text.SimpleDateFormat;; public class SampleDateFamat { public static void main(String [] args){ SimpleDateFormat sd = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); Date date1 = new Date(); String str1 = sd.format(date1); System.out.println(str1); SimpleDateFormat sd2 = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); String str2 = sd2.format(date1); System.out.println(str2); try { SimpleDateFormat sd3 = new SimpleDateFormat("yyyyMMdd"); Date date2 = sd3.parse("20090425"); System.out.print(date2); } catch (ParseException e) { // TODO Auto-generated catch block e.printStackTrace(); } } }