public boolean IsTime(String date){
// \\d{4}-\\d{1,2}-\\d{1,2}\\s\\d{2}:\\d{2}:\\d{2} 是判断yyyy-MM-dd hh:mm:ss格式 // \\d{4}-\\d{1,2}-\\d{1,2} 是判断yyyy-MM-dd格式
if(date.matches(\\d{4}-\\d{1,2}-\\d{1,2}\\s\\d{2}:\\d{2}:\\d{2})||date.matches(\\d{4}-\\d{1,2}-\\d{1,2})){ return true;}
return false;
}