我需要像
这样的格式java.time.Duration
T05:00:00 (hours:minutes:seconds).
我该怎么办?
答案 0 :(得分:0)
如果可以转换为字符串,则可以使用
String.format();
为此。
答案 1 :(得分:0)
SimpleDateFormat类位于Java的实用程序库中,并且是大多数人使用的类:
import java.text.SimpleDateFormat;
import java.util.Date;
public class Time {
public static void main(String[] args) {
//instance of the time, date
Date date = new Date();
//format it however you like.
String strDateFormat = "HH:mm:ss";
//The SimpleDateFormat class allows the actual time format
SimpleDateFormat sdf = new SimpleDateFormat(strDateFormat);
//use the sdf object to format
System.out.println(sdf.format(date));
}
}