public static void main(String[] args) throws ParseException { SimpleDateFormat sdf=new SimpleDateFormat("yyyy-mm-dd"); SimpleDateFormat sdf2=new SimpleDateFormat("yyyy-mm-dd hh:mm:ss"); System.out.println(sdf.parse("2016-9-12").getTime()); System.out.println(sdf2.parse("2016-9-12 00:09:00").getTime()); } 输出结果是:14525285400001452528540000为什么不给出时分秒,就是从第九分钟开始的?感谢大家。。。真是写昏头了
添加回答
举报
0/150
提交
取消