Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
次のように 2 つの int 変数があります。
int minutes = 20; int hours = 8;
それらを「HHMM」フォーメーションに変換するにはどうすればよいですか?
上記の場合、結果は「0820」になるはずです。
Calendar以下のようにクラスを使用します。
Calendar
Calendar c = Calendar.getInstance(); c.set(Calendar.HOUR, hours); c.set(Calender.MINUTE, minutes);
値のみをフォーマットする場合は、次を使用できます。
String str = String.format("%02d%02d", hours, minutes);