首先接受一个参数String transTime = “2013102314”; 然后经过时间计算,以每小时进行累加 输出结果 String time = "2013102315"; 时间格式:SimpleDateFormat formatDate = new SimpleDateFormat("yyyyMMddHH"); 求函数求方法!求大神!
参考技术Atry SimpleDateFormat formatDate = new SimpleDateFormat("yyyyMMddHH"); String dateStr="2013102314";//输入参数 Date date =formatDate.parse(dateStr); Long nowValue= date.getTime();//date的毫秒数 Long afterHour=nowValue+1*60*1000;//date加一个小时的毫秒数 Date afterHourDate=new Date(afterHour); catch (ParseException ex) java.util.logging.Logger.getLogger(UserController.class.getName()).log(Level.SEVERE, null, ex); 本回答被提问者采纳参考技术B表达能清楚一点吗?是要开线程模拟时钟还是直接给一个天数或者小时输出一定时间之后的时间啊?参考技术C经过时间计算是什么??追问