Java Date Now getNowDate()

Here you can find the source of getNowDate()

Description

get Now Date

License

Apache License

Declaration

@SuppressWarnings("deprecation")
public static String getNowDate() 

Method Source Code

//package com.java2s;
//License from project: Apache License 

import java.text.ParseException;
import java.text.SimpleDateFormat;

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

public class Main {

    @SuppressWarnings("deprecation")
    public static String getNowDate() {
        Date date = new Date();
        int nowMonth = date.getMonth() + 1;
        int nowYear = date.getYear() + 1900;
        int day = date.getDate();
        String startTime = nowYear + "-" + nowMonth + "-" + day;
        return startTime;
    }//from  w ww . ja  v a  2 s.co  m

    public static String getYear() {
        return getDateString("yyyy");
    }

    public static Date getDate() {
        try {
            return getDate("yyyy-MM-dd");
        } catch (ParseException e) {
            e.printStackTrace();
        }
        return null;
    }

    public static Date getDate(String format) throws ParseException {
        SimpleDateFormat df = new SimpleDateFormat(format);
        Date date = new Date(System.currentTimeMillis());
        return convertStringToDate(df.format(date), format);
    }

    public static String getDateString() {
        return getDateString("yyyy-MM-dd");
    }

    public static String getDateString(int after) {
        return addDay(getDateString("yyyy-MM-dd"), after);
    }

    public static String getDateString(String format) {
        SimpleDateFormat df = new SimpleDateFormat(format);
        Date date = new Date(System.currentTimeMillis());
        String dateStr = df.format(date);
        return dateStr;
    }

    public static Date convertStringToDate(String time, String format)
            throws ParseException {
        if (format == null) {
            format = "yyyy-MM-dd";
        }
        SimpleDateFormat sdf = new SimpleDateFormat(format);
        return sdf.parse(time);
    }

    public static String addDay(String beginDateStr, int adddaycount) {
        java.text.SimpleDateFormat format = new java.text.SimpleDateFormat(
                "yyyy-MM-dd");
        try {
            Date beginDate = format.parse(beginDateStr);
            Calendar cal = Calendar.getInstance();
            cal.setTime(beginDate);
            cal.add(Calendar.DATE, adddaycount);
            Date enddate = cal.getTime();
            return format.format(enddate);
        } catch (ParseException e) {
            e.printStackTrace();
        }
        return null;
    }

    public static Date addDay(Date beginDate, int addcount) {
        Calendar cal = Calendar.getInstance();
        cal.setTime(beginDate);
        cal.add(Calendar.DAY_OF_YEAR, addcount);
        Date enddate = cal.getTime();
        return enddate;
    }
}

Related

  1. getNowDate()
  2. getNowDate()
  3. getNowDate()
  4. getNowDate()
  5. getNowDate()
  6. getNowDate()
  7. getNowDate()
  8. getNowDate(String format)
  9. getNowDate(String format)