본문 바로가기
자바

java.util.Date를 문자열로 변환합니다

by º기록 2021. 4. 10.
반응형

java.util.Date 객체를 Java에서 문자열 로 변환하려고합니다.

형식은 <코드> 2010-05-30 22:15:52

 

해결 방법

 


String pattern = "MM/dd/yyyy HH:mm:ss";

// Create an instance of SimpleDateFormat used for formatting 
// the string representation of date according to the chosen pattern
DateFormat df = new SimpleDateFormat(pattern);

// Get the today date using Calendar object.
Date today = Calendar.getInstance().getTime();        
// Using DateFormat format method we can create a string 
// representation of a date with the defined format.
String todayAsString = df.format(today);

// Print the result!
System.out.println("Today is: " + todayAsString);


 

참조 페이지 https://stackoverflow.com/questions/5683728

 

 

반응형

댓글