ivr判断是否在工作时间

 

 

private boolean isInWorkTime(){
		//首先获得当前系统时间的时
		Date curTime=new Date();
		Calendar cal = Calendar.getInstance();
		cal.setTime(curTime);
		boolean rst=false;
		int currHour=cal.get(Calendar.HOUR_OF_DAY);
		if(currHour>=9 && currHour<=18){
			rst=true;
		}else{
			rst=false;
		}
		return rst;
	}

 

 

 

你可能感兴趣的:(工作)