Java Day From convertYYMMDDToDate(int y, int m, int d, boolean beginning_of_day)

Here you can find the source of convertYYMMDDToDate(int y, int m, int d, boolean beginning_of_day)

Description

convert YYMMDD To Date

License

Apache License

Declaration

public static Date convertYYMMDDToDate(int y, int m, int d, boolean beginning_of_day) 

Method Source Code

//package com.java2s;
/*//from   w  ww. j  a  va  2s .com
 Copyright (C) 2012 The Stanford MobiSocial Laboratory
    
   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.*;

public class Main {
    public static Date convertYYMMDDToDate(int y, int m, int d, boolean beginning_of_day) {
        // if m is out of range, its equiv to 0
        if (m < 0 || m > 11)
            m = 0;
        if (d < 0 || d > 30)
            d = 0;
        GregorianCalendar c = new GregorianCalendar();
        c.set(Calendar.YEAR, y);
        c.set(Calendar.MONTH, m);
        c.set(Calendar.DATE, d);
        if (beginning_of_day) {
            c.set(Calendar.HOUR_OF_DAY, 0);
            c.set(Calendar.MINUTE, 0);
            c.set(Calendar.SECOND, 0);
        } else {
            c.set(Calendar.HOUR_OF_DAY, 23);
            c.set(Calendar.MINUTE, 59);
            c.set(Calendar.SECOND, 59);
        }
        return c.getTime();
    }
}

Related

  1. calculateDate(Date startDay, int days)
  2. calculatorStartTimeOnDay(Date date)
  3. clearDay(long timeInMillis)
  4. CompareDay(Date orgin, Date target)
  5. createInDays(final Date from, final int amount)
  6. day(Integer time)
  7. dayFromDateValue(long x)
  8. dayNumberToTimestamp(short dateNumber)