SimpleDateFormat hms = new SimpleDateFormat("hhmmss");
Integer time = Integer.parseInt(hms.format(new Date()));
比如是下午五点,现在返回的就是5,而不是17,怎么处理啊