Android Timestamp Get getFirstOfMonth(Timestamp t1)

Here you can find the source of getFirstOfMonth(Timestamp t1)

Description

get First Of Month

Declaration

public static Timestamp getFirstOfMonth(Timestamp t1) 

Method Source Code

//package com.java2s;

import java.sql.Timestamp;

import java.util.Calendar;

import java.util.GregorianCalendar;

public class Main {
    public static Timestamp getFirstOfMonth(Timestamp t1) {
        Calendar a = new GregorianCalendar();
        a.setTime(t1);/*from   ww w .  j av a  2 s. c  om*/
        a.set(Calendar.DATE, 1);
        return new Timestamp(a.getTimeInMillis());
    }
}

Related

  1. getCurrentMonth(Timestamp t1)
  2. getCurrentWeek(Timestamp t1)
  3. getFirstOfYear(Timestamp t1)
  4. getFriendlyTimeStamp()
  5. getLastOfMonth(Timestamp t1)
  6. getLastOfYear(Timestamp t1)