-1

クロノメーターフォーマット(hh:mm:ss)があります。フォーマット( mm:ss)(分のみ)が好きです。

例:01:30:00〜90:00。私を助けてください

4

1 に答える 1

-1

このコードを考えてみましょう:

/**
 * Format of the time
 */
private final static String MINUTE_SECOND_FORMAT = "%02d:%02d";

///// code... 

final int minutes = (currentSeconds % 3600) / 60;
final int seconds = currentSeconds % 60;

String formatted = String.format(Locale.getDefault(), MINUTE_SECOND_FORMAT, minutes, seconds);

これにより、分:秒の形式でフォーマットされた文字列を取得します。

于 2013-03-19T12:07:49.043 に答える