当前位置: 代码迷 >> Java Web开发 >> 怎么将日期(一串数字)(以秒为单位) 转换为 格式(yyyy-MM-dd hh:mm:ss)
  详细解决方案

怎么将日期(一串数字)(以秒为单位) 转换为 格式(yyyy-MM-dd hh:mm:ss)

热度:901   发布时间:2016-04-17 14:05:34.0
如何将日期(一串数字)(以秒为单位) 转换为 格式(yyyy-MM-dd hh:mm:ss)
1:有当前日期已被获取,但格式为秒值,如:1181640854734
    如何将些日期再转化成为   格式(yyyy-MM-dd   hh:mm:ss)

2:   如果上面不能解决,有朋友可以提供这样的代码吗?
以当前日期加上一个月的时间!



------解决方案--------------------
问题一:
Date date = new Date(System.currentTimeMillis());
SimpleDateFormat sdf = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss ");
String s = sdf.format(date);
System.out.println(s);

问题二:
Calendar calendar = Calendar.getInstance();
calendar.set(Calendar.MONTH, calendar.get(Calendar.MONTH)+1);
System.out.println(calendar.get(Calendar.MONTH)+1); //输出时需要加1,因为月份是从0开始的
  相关解决方案