Java Date to Day getDay(Date date)

Here you can find the source of getDay(Date date)

Description

get Day

License

Apache License

Declaration

public static Date getDay(Date date) 

Method Source Code

//package com.java2s;
/*/*  ww w  .  j  a v a 2s . c o  m*/
 * Copyright 2010 NCHOVY
 * 
 * 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.util.Date;

public class Main {
    private static int timezoneOffset = Calendar.getInstance().getTimeZone().getRawOffset();

    public static Date getDay(Date date) {
        long time = date.getTime();
        return new Date(time - ((time + timezoneOffset) % 86400000L));

        // Calendar c = Calendar.getInstance();
        // c.setTime(date);
        // c.set(Calendar.HOUR_OF_DAY, 0);
        // c.set(Calendar.MINUTE, 0);
        // c.set(Calendar.SECOND, 0);
        // c.set(Calendar.MILLISECOND, 0);
        // return c.getTime();
    }
}

Related

  1. getDay(Date date)
  2. getDay(Date date)
  3. getDay(Date date)
  4. getDay(Date date)
  5. getDay(Date date)
  6. getDay(Date date, int day)
  7. getDay(Date dateParam)
  8. getDay(java.util.Date date)
  9. getDay(String strDate)