日期格式转换:月日年时:分:秒转换为 yyyy-MM-dd HH:mm:ss

    xiaoxiao2021-03-25  175

    /** * nativeMysql 导出日期格式转换 * @param time 导出日期:月/日/年 时:分:秒 * @param Date 转换后的日期格式:yyyy-MM-dd HH:mm:ss */ public static Date nativecatFormat(String time) { String date1 = time.replace("/", "-"); //先截取后半段的,如5-6-2016 10:05:05,则先截取2016 String date2 = date1.substring(date1.lastIndexOf("-")+1, date1.lastIndexOf("-")+5); //然后把-2016 替换成"" String date3 = date1.replace(date1.substring(date1.lastIndexOf("-"), date1.lastIndexOf("-")+5),""); return new SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse(date2+"-"+date3); }
    转载请注明原文地址: https://ju.6miu.com/read-5465.html

    最新回复(0)