반응형
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
반응형
'자바' 카테고리의 다른 글
문자열이 Java의 정수인지 확인합니다 (0) | 2021.04.10 |
---|---|
문자열을 Java의 int로 변환하려면 어떻게합니까? (0) | 2021.04.10 |
폴더의 모든 파일의 파일 이름을 가져옵니다 (0) | 2021.04.10 |
문자열을 UTF-8로 인코딩합니다 (0) | 2021.04.10 |
Maven을 사용하여 종속성이있는 실행 가능한 JAR을 어떻게 만들 수 있습니까? (0) | 2021.04.10 |
댓글