/* 时间转换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…
//往往json传过来的时间都是"/Date(1405056837780)/" //转换需要的方法 String.prototype.ToString = function (format) { var dateTime = new Date(parseInt(this.substring(6, this.length - 2))); format = format.replace("yyyy", dateTime.getFullYear()); format =…
1.时间戳和时间对象可以灵活转变: let n = new Date() // 返回的是当前时间对应的国际时间 let nt =n.getTime() let n2 =new Date(nt) console.log(n,nt,n2) 输出为当前时间和时间戳: Date 2018-12-06T06:41:56.217Z 1544078516217 Date 2018-12-06T06:41:56.217Z 2.时间转换的字符串参数格式不同,返回的时间格式有时会不同 // 时分秒如果有参数,返回的…