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 変数は、現在の日付と時刻を表す文字列です。
DateFormat#format メソッドの使用方法のその他の例は、http://www.kodejava.org/examples/86.html で見つけることができます。 .
以上がJava で java.util.Date オブジェクトを文字列に変換するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。