时间类型和字符串类型相互转换——SimpleDateFormat中parse和format的用法
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
simpleDateFormat.parse("xxxxxxx");//字符串->时间
simpleDateFormat.format(new Date());//时间->字符串
转换成什么格式,取决于:new SimpleDateFormat("yyyy-MM-dd HH:mm:ss")
本文来自博客园,作者:ICE-CREAMMM,转载请注明原文链接:https://www.cnblogs.com/gsxm/p/16771960.html