Java で java.util.Date を文字列に変換する方法
Java には、java.util.Date オブジェクトを文字列に変換する複数の方法が用意されています。文字列表現。 DateFormat#format メソッドを使用した 1 つのアプローチを次に示します。
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 で java.util.Date を文字列に変換するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。