Java Day of getThursday(String date)

Here you can find the source of getThursday(String date)

Description

get Thursday

License

Open Source License

Declaration

public static String getThursday(String date) 

Method Source Code


//package com.java2s;

import java.text.DateFormat;

import java.text.SimpleDateFormat;
import java.util.*;

public class Main {
    public static final String dateFormat = "yyyy-MM-dd";

    public static String getThursday(String date) {
        Date d = strToDtSimpleFormat(date);
        Calendar cal = Calendar.getInstance();
        cal.setTime(d);//from  w w w .j ava  2  s.c  o  m
        cal.set(Calendar.DAY_OF_WEEK, Calendar.THURSDAY);
        return dateFormat(cal.getTime());
    }

    public static final Date strToDtSimpleFormat(String strDate) {
        if (strDate == null) {
            return null;
        }

        try {
            return getFormat(dateFormat).parse(strDate);
        } catch (Exception e) {
        }

        return null;
    }

    public static final String dateFormat(Date date) {
        if (date == null) {
            return "";
        }
        return getFormat(dateFormat).format(date);
    }

    public static final DateFormat getFormat(String format) {
        return new SimpleDateFormat(format);
    }

    public static final String format(Date date, String formate) {
        if (date == null) {
            return "";
        }
        return getFormat(formate).format(date);
    }

    public static final String format(Long dateTmie, String formate) {
        Date date = new Date(dateTmie);
        return getFormat(formate).format(date);
    }
}

Related

  1. getStartDateByDays(Date endDate, int days)
  2. getStringAfterNDay(String str, int n)
  3. getStringDay(Calendar cal)
  4. getTargetDay(String day, int beforeOrAfterDays)
  5. getTheDayBefore(Date date)
  6. getTimeOfDaySeconds()
  7. getTimestamp(String format, Integer daysInFuture)
  8. getTwoDay(String sj1, String sj2)
  9. getTwoDay(String sj1, String sj2)