Util.java Source code

Java tutorial

Introduction

Here is the source code for Util.java

Source

import java.sql.Timestamp;
import java.util.Calendar;

public class Util {
    public static Timestamp getToday() {
        return new Timestamp(Calendar.getInstance().getTime().getTime());
    }

}