SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
loadtime = format.format(new Date());
System.out.println("loadtime..,,.."+loadtime);
在本地跑打印的是24小时的,在远程服务器就成了12小时的了
换为 loadtime = format.format(new Date().getTime());就正常了,好奇葩
添加回答
举报
0/150
提交
取消