//开始时间
timeBegin+ " 00:00:00";
//结束时间
timeEnd+ " 23:59:59";
//时间转换
SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
//Java时间类型转换成Long类型(可封装成工具类)
public static Long stringToLong(String timeStr,SimpleDateFormat sdf){
Date date = null;
try {
date = sdf.parse(timeStr);
} catch (ParseException e) {
e.printStackTrace();
}
//继续转换得到秒数的long型
long lTime = date.getTime();
return lTime;
}
//继续转换得到秒数的long型
stringToLong(timeBegin+ " 00:00:00", new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"));
//Long类型转换字符串
format.format(Long time);