Java에서 java.util.Date 클래스는 특정 순간을 나타냅니다. 그러나 날짜를 문자열로 작업해야 하는 경우에는 문자열 형식으로 변환해야 합니다.
Date 개체를 문자열로 변환하려면 다음을 수행하세요. DateFormat#format 방법을 사용하세요. 이 방법을 사용하면 날짜 변환 방법을 결정하는 형식 지정 패턴을 지정할 수 있습니다.
다음은 DateFormat#format 방법을 사용하는 방법에 대한 예입니다.
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);
이 예에서는 에서 패턴 변수는 출력 문자열의 형식을 지정합니다. df 변수는 날짜 형식을 지정하는 데 사용되는 SimpleDateFormat의 인스턴스입니다. today 변수는 현재 날짜와 시간을 나타내는 Date의 인스턴스입니다. todayAsString 변수는 현재 날짜와 시간을 문자열로 표현한 것입니다.
http://www.kodejava.org/examples/86.html에서 DateFormat#format 메서드를 사용하는 방법에 대한 더 많은 예를 찾을 수 있습니다. .
위 내용은 java.util.Date 객체를 Java의 문자열로 어떻게 변환합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!