java格式化日期24小时_Java如何格式化24小时格式的时间?

news/2024/11/24 2:38:44/

在Java中,如何格式化24小时格式的时间??

此示例使用SimpleDateFormat类的sdf.format(date)方法将时间格式化为24小时格式(00:00-24:00)。

package com.yiibai;

import java.text.SimpleDateFormat;

import java.util.*;

public class FormatTimeIn24Hour {

public static void main(String[] args) {

// 示例1

Date date = new Date();

SimpleDateFormat sdf = new SimpleDateFormat("h");

System.out.println("hour in h format : " + sdf.format(date));

// 示例2

Date d2 = new Date();

SimpleDateFormat simpDate2;

simpDate2 = new SimpleDateFormat("kk:mm:ss");

System.out.println(simpDate2.format(d2));

// 示例3

Date d3 = new Date();

SimpleDateFormat simpDate3;

simpDate3 = new SimpleDateFormat("yyyy-MM-dd kk:mm:ss");

System.out.println(simpDate3.format(d3));

}

}

上述代码示例将产生以下结果,结果将根据当前系统时间而有变化。

hour in h format : 20

20:43:15

2017-09-17 20:43:15

¥ 我要打赏

纠错/补充

收藏

加QQ群啦,易百教程官方技术学习群

注意:建议每个人选自己的技术方向加群,同一个QQ最多限加 3 个群。


http://www.ppmy.cn/news/779586.html

相关文章

java计算两个日期间相差多少天多少小时多少分多少秒

1、参数为日期类型参数 /** * @Description: TODO(计算两个日期【日期类型】之间的时间距离) * @param @param sdate * @param @param bdate * @param @return 设定文件 * @throws */ public static Map<String,Long> timesBetween(Date sdate,Date bdate) { Dat…

python输入秒数输出分钟小时_Python函数将秒到分钟,小时,天问题,怎么解决

慕盖茨4494581 为了美化日志输出程序执行的总时间,同时人们能够快速获取所需要的信息,需要把输出的秒数转换成 228 days, 22 hour, 9 min,39.0 sec 这样的格式。因为考虑到判断的重复型,这个函数运用递归的思维方式编写的。[python] view plain copy#coding:utf8 import t…

Java工具类 计算某个时间距离当前时间相差多少天、多少小时、多少分、多少秒

/*** 计算传入时间距离当前时间多久** param date* return*/ public static String getTimeDiff(String date) {if (ObjectUtils.isEmpty(date)) {return "";}StringBuilder sb new StringBuilder();try {Date parse mDateFormat.parse(date);Date now new Date()…

PHP 秒转换为多少天/小时/分钟

$time 101220; $d floor($time / (3600*24)); $h floor(($time % (3600*24)) / 3600); $m floor((($time % (3600*24)) % 3600) / 60); if($d>0){echo $d.天.$h.小时.$m.分; }else{if($h!0){echo $h.小时.$m.分;}else{echo $m.分;} } 返回结果为&#xff1a;1天4小时7分…

java 获得两个时间段差距:时分秒,两个时间相差距离多少天多少小时多少分多少秒

/** * 两个时间相差距离多少天多少小时多少分多少秒 * * param str1 * 时间参数 1 格式&#xff1a;1990-01-01 12:00:00 * param str2 * 时间参数 2 格式&#xff1a;2009-01-01 12:00:00 * return long[] 返回值为…

3600000毫秒等于多少小时_毫秒换算(秒与毫秒换算)

时间的单位换算1秒=1000毫秒(ms)1毫秒=1/1,000秒(s)1秒=1,000,000 微秒(μs) 1微秒=1/1,000,000秒(s) 1秒=1,000,000,000 纳秒(ns) 1纳秒=1/1,000,000,. 秒和毫秒的换算公式是:一秒等于一千毫秒。 时间单位秒(second)是国际单位制中时间的基本单位,符号是s。有时也会借用英文…

将长秒数转成24小时制时间

&#xfeff;&#xfeff; 将长秒数转成24小时制时间返回字符串类型 private string avgStayDate(int Second){string reDateStr string.Empty;if (Second > 86400){return reDateStr "大于1天";}else{TimeSpan ts new TimeSpan(0, 0, 0, Second);int h ts.Ho…

java把秒时长转换为分钟_java - 将秒值转换为小时分钟秒?

java - 将秒值转换为小时分钟秒? 我一直在尝试将秒值(在BigDecimal变量中)转换为editText中的字符串,如“1小时22分33秒”或类似的东西。 我试过这个: String sequenceCaptureTime = ""; BigDecimal roundThreeCalc = new BigDecimal("0"); BigDecimal …