Java tutorial
//package com.java2s; //License from project: Apache License import java.util.Calendar; public class Main { private static boolean isSameHalfDay(Calendar now, Calendar msg) { int nowHour = now.get(Calendar.HOUR_OF_DAY); int msgHOur = msg.get(Calendar.HOUR_OF_DAY); if (nowHour <= 12 & msgHOur <= 12) { return true; } else if (nowHour >= 12 & msgHOur >= 12) { return true; } else { return false; } } }