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

avatar
作者
猴君
阅读量: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

广告一刻

为您即时展示最新活动产品广告消息,让您随时掌握产品活动新动态!