Browsing all posts in "java.util".

Calendar in java

Okey in this night I’ll share you about how to make calendar with java, here is the code
Calendar program
import java.util.Date;
import java.util.Calendar;
import java.util.GregorianCalendar;
public class Main {
// Jumlah hari di tiap bulan, index 0 = Januari
private static final int[] jml_hari = {
31, 28, 31, 30, 31, 30, 31, 31, 30, [...]