Here you can find the source of isNight()
public static boolean isNight()
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; public class Main { public static boolean isNight() { SimpleDateFormat sdf = new SimpleDateFormat("HH"); int hour = Integer.valueOf(sdf.format(new Date())); return hour > 18 || hour < 6; }/*from w w w . java 2s . c o m*/ }