/**
* @Description: long类型转换成日期
*
* @param lo 毫秒数
* @return String yyyy-MM-dd HH:mm:ss
* @throws ParseException
*/
public static String transferLongToDate(String dateString) throws ParseException{
SimpleDateFormat df = new SimpleDateFormat("yyyyMMddhhmmss");
Date date = df.parse(dateString);
String now = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss").format(date);
return now;
}