Java 示例 - 显示当前时间
-
问题描述
如何以 24 小时格式格式化时间? -
解决方案
本示例使用 SimpleDateFormat 类的 sdf.format(date) 方法将时间格式化为 24 小时格式 (00:00-24:00)。import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static void main(String[] args) { Date date = new Date(); SimpleDateFormat sdf = new SimpleDateFormat("h"); System.out.println("hour in h format : " + sdf.format(date)); } }
-
结果
上面的代码示例将产生以下结果。hour in h format : 8
以下是日期和时间的另一个示例示例import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static void main(String[] argv) throws Exception { Date d = new Date(); SimpleDateFormat simpDate; simpDate = new SimpleDateFormat("kk:mm:ss"); System.out.println(simpDate.format(d)); } }
上面的代码示例将产生以下结果。06:04:26