一般在获取到时间字符串,需要将时间字符串格式化为golang的"time.Time"对象的时候,通常有2个函数,分别是. time.Parse(layout, value string) (Time, error) time.ParseInLocation(layout, value string, loc *Location) (Time, error) 两个函数相比,不一样的地方在于,Parse()函数解析的时候,会默为UTC时间,获取的Time对象转换为Unix()对象后,会比当…
/* 时间转换start */ public static void main(String args[]) { Date nowTime = new Date(); System.out.println(nowTime); SimpleDateFormat time = new SimpleDateFormat("yyyy/M/d"); BeanDayTraffic bd = new BeanDayTraffic(); System.out.println(time.format(n…