Java에서 java.util.Date를 문자열로 변환하는 방법
문제:
java.util.Date 객체를 Java의 형식화된 문자열, 특히 다음 형식으로 변환해야 합니다. "2010-05-30 22:15:52".
해결책:
java.util.Date를 Java의 문자열로 변환하려면 다음을 사용할 수 있습니다. DateFormat.format() 메서드. 이 메소드는 Date 객체와 형식 지정 패턴을 입력으로 사용하고 형식이 지정된 문자열을 반환합니다.
예:
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);
이 코드는 지정된 날짜에 현재 날짜와 시간을 인쇄합니다. 형식:
Today is: 05/30/2010 22:15:52
출처:
http://www.kodejava.org/examples/86.html
위 내용은 Java에서 java.util.Date 객체를 문자열로 형식화하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!