gpt4 book ai didi

java - 将标准时间转换为传统时间

转载 作者:行者123 更新时间:2023-12-01 07:07:33 27 4
gpt4 key购买 nike

我需要将标准时间转换为传统时间。

最佳答案

使用 SimpleDateFormat 的解决方案

    private  static String  convertTimes(String stdTime) throws ParseException{
SimpleDateFormat stdF = new SimpleDateFormat("HH:mm:ss");
SimpleDateFormat tF = new SimpleDateFormat("hh:mm a");
return tF.format(stdF.parse(stdTime));
}

关于java - 将标准时间转换为传统时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20712128/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com