Java에서 java.util.Date를 문자열로 변환하는 방법
Java는 java.util.Date 객체를 문자열로 변환하는 여러 가지 방법을 제공합니다. 문자열 표현. 다음은 DateFormat#format 메서드를 사용하는 한 가지 접근 방식입니다.
DateFormat#format을 사용하여 날짜를 문자열로 변환
다음 코드 조각은 Date 객체를 문자열로 변환하는 방법을 보여줍니다. DateFormat#format 메소드를 사용하는 문자열:
import java.text.SimpleDateFormat; import java.util.Calendar; import java.util.Date; public class DateToStringExample { public static void main(String[] args) { 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); } }
이 코드는 현재 날짜와 시간을 출력합니다. 지정된 패턴으로.
위 내용은 java.util.Date를 Java의 문자열로 어떻게 변환합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!