我有一个计时器格式(hh:mm:ss)。我喜欢有一种格式(mm:ss)(仅限分钟)。
例如:01:30:00 至 90:00。请帮我
考虑这段代码:
/**
* 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);
有了这个,你会得到一个格式化的字符串,格式为分:秒。