private static final String formatStr = "HH:mm"; private static SimpleDateFormat sdf=new SimpleDateFormat(formatStr); public static void main(String args[]) throws ParseException { String tS = "13:00"; String tE = "13:10"; if(isInZone(getLong(tS),getLong(tE),getCurrentTime())){ // You
...全文