Here you can find the source of getSystemDate()
public static long getSystemDate()
//package com.java2s; import java.util.Date; public class Main { public static long getSystemDate() { Date date = new Date(); return date.getTime(); }// ww w . j a v a 2 s. c o m }