Java SQL Date getNow()

Here you can find the source of getNow()

Description

get Now

License

Apache License

Declaration

public static Date getNow() 

Method Source Code


//package com.java2s;
/*//from w  w  w.jav  a 2 s.  c o  m
 * Copyright 2015 heming.keh@gmail.com
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.util.Calendar;
import java.sql.Date;

public class Main {
    public static Date getNow() {
        Calendar cal = Calendar.getInstance();
        return new Date(cal.getTimeInMillis());
    }
}

Related

  1. getIntervalDays(String sd, String ed)
  2. getLastDay()
  3. getMonthInt(String month)
  4. getNextDayStr(String curday)
  5. getNextDayStr(String curday)
  6. getNow()
  7. getNowHour()
  8. getProtobufClass(Object value, Class protobufClass)
  9. getTodayAndTomorrow()