在Java中,可以使用`SimpleDateFormat`类来将HHMM的时间格式化为HH:MM AM / PM。
```java
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`。