Java format hour and min(Java 格式小时和分钟)
问题描述
我需要像这样格式化我的时间字符串:
I need to format my time string such as this:
int time = 160;
这是我的示例代码:
public static String formatDuration(String minute) {
String formattedMinute = null;
SimpleDateFormat sdf = new SimpleDateFormat("mm");
try {
Date dt = sdf.parse(minute);
sdf = new SimpleDateFormat("HH mm");
formattedMinute = sdf.format(dt);
} catch (ParseException e) {
e.printStackTrace();
}
return formattedMinute;
// int minutes = 120;
// int h = minutes / 60 + Integer.parseInt(minute);
// int m = minutes % 60 + Integer.parseInt(minute);
// return h + "hr " + m + "mins";
}
我需要将其显示为 2 小时 40 分钟.但我不知道如何附加小时"和分钟".要求是不要使用任何库.
I need to display it as 2hrs 40mins. But I don't have a clue how to append the "hrs" and "mins". The requirement is not to use any library.
如果您过去做过类似的事情,请随时提供帮助.非常感谢!
If you've done something like this in the past, feel free to help out. Thanks a bunch!
推荐答案
既然是 2018 年,你真的应该使用 Java 8 中引入的日期/时间库
Since, it's 2018, you really should be making use of the Date/Time libraries introduced in Java 8
String minutes = "160";
Duration duration = Duration.ofMinutes(Long.parseLong(minutes));
long hours = duration.toHours();
long mins = duration.minusHours(hours).toMinutes();
// Or if you're lucky enough to be using Java 9+
//String formatted = String.format("%dhrs %02dmins", duration.toHours(), duration.toMinutesPart());
String formatted = String.format("%dhrs %02dmins", hours, mins);
System.out.println(formatted);
哪些输出...
2hrs 40mins
为什么要使用这样的东西?除了通常是更好的 API,当 minutes
等于 1600
时会发生什么?
Why use something like this? Apart of generally been a better API, what happens when minutes
equals something like 1600
?
上面将显示 26hrs 40mins
,而不是打印 2hrs 40mins
.SimpleDateFormat
格式化日期/时间值,它不处理持续时间
Instead of printing 2hrs 40mins
, the above will display 26hrs 40mins
. SimpleDateFormat
formats date/time values, it doesn't deal with duration
这篇关于Java 格式小时和分钟的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Java 格式小时和分钟
- 如何使用WebFilter实现授权头检查 2022-01-01
- C++ 和 Java 进程之间的共享内存 2022-01-01
- 从 finally 块返回时 Java 的奇怪行为 2022-01-01
- 将log4j 1.2配置转换为log4j 2配置 2022-01-01
- Java包名称中单词分隔符的约定是什么? 2022-01-01
- Jersey REST 客户端:发布多部分数据 2022-01-01
- Spring Boot连接到使用仲裁器运行的MongoDB副本集 2022-01-01
- Eclipse 插件更新错误日志在哪里? 2022-01-01
- value & 是什么意思?0xff 在 Java 中做什么? 2022-01-01
- Safepoint+stats 日志,输出 JDK12 中没有 vmop 操作 2022-01-01