私は日付と時刻に固執しています。私のプログラムでこの「20121217」のような日付を作成したいと思います。最初の4文字は年、次の2文字は月、最後の2文字は日です。年+月+日
時間は「112233」時+分+秒
ご協力いただきありがとうございます!
私は日付と時刻に固執しています。私のプログラムでこの「20121217」のような日付を作成したいと思います。最初の4文字は年、次の2文字は月、最後の2文字は日です。年+月+日
時間は「112233」時+分+秒
ご協力いただきありがとうございます!
これはフォーマットの問題です。Javaはとをそれらのために使用しjava.util.Date
ます。java.text.DateFormat
java.text.SimpleDateFormat
DateFormat dateFormatter = new SimpleDateFormat("yyyyMMdd hhmmss");
dateFormatter.setLenient(false);
Date today = new Date();
String s = dateFormatter.format(today);
次のようなことができます。
Calendar c = Calendar.getInstance();
String date = c.get(Calendar.YEAR) + c.get(Calendar.MONTH) + c.get(Calendar.DATE);
String time = c.get(Calendar.HOUR) + c.get(Calendar.MINUTE) + c.get(Calendar.SECOND);
必要に応じて、特定の形式の時刻または日付を変更します。
SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd_HHmmss");
currentDateandTime = sdf.format(new Date());
日付:
DateFormat df = new SimpleDateFormat("yyyyMMdd");
String strDate = df.format(new Date());
時間について:
DateFormat df = new SimpleDateFormat("hhmmss");
String strTime = df.format(new Date());
あなたが探しているのは Java の SimpleDateFormat です...このページを見てください。
必要に応じてこれを試してください:
SimpleDateFormat format = new SimpleDateFormat("yyyyMMdd hhmmss");
Date parsed = format.parse(new Date());
System.out.println(parsed.toString());