在Java中如何将HHMM的时间格式化为HH:MM AM / PM

66次阅读
没有评论

共计 679 个字符,预计需要花费 2 分钟才能阅读完成。

在 Java 中,可以使用 SimpleDateFormat 类来将 HHMM 的时间格式化为 HH:MM AM / PM。

import java.text.SimpleDateFormat;
import java.util.Date;
public class TimeFormatExample {public static void main(String[] args) {
String time = "0830"; // 输入的时间为 HHMM 格式
try {SimpleDateFormat inputFormat = new SimpleDateFormat("HHmm");
SimpleDateFormat outputFormat = new SimpleDateFormat("hh:mm a");
Date date = inputFormat.parse(time);
String formattedTime = outputFormat.format(date);
System.out.println(formattedTime);
} catch (Exception e) {e.printStackTrace();
}
}
}

在上述代码中,首先定义了输入格式为 ”HHmm”,输出格式为 ”hh:mm a” 的两个 SimpleDateFormat 对象。然后使用 inputFormat.parse(time) 方法将输入的时间解析为 Date 对象,再使用 outputFormat.format(date) 方法将 Date 对象格式化为指定输出格式的时间字符串。最后打印输出结果。
运行上述代码,将会输出08:30 AM

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-20发表,共计679字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)