Java Week Day weekDay(int week)

Here you can find the source of weekDay(int week)

Description

week Day

License

Apache License

Declaration

private static Date weekDay(int week) 

Method Source Code

//package com.java2s;
/*//from   ww w .j  a v  a 2 s .c o m
 *  Copyright  sunflower
 *
 *  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;
import java.util.GregorianCalendar;
import java.util.Locale;

public class Main {
    private static Date weekDay(int week) {
        Calendar cal = calendar();
        cal.set(Calendar.DAY_OF_WEEK, week);
        return cal.getTime();
    }

    public static Calendar calendar() {
        Calendar cal = GregorianCalendar.getInstance(Locale.CHINESE);
        cal.setFirstDayOfWeek(Calendar.MONDAY);
        return cal;
    }
}

Related

  1. nextTwoWeeksFromToday()
  2. nextWeekday(int weekday, int hour, int minute, int second)
  3. parseToEntireWeekCaption(String startDay, String pattern)
  4. plusDay(Date date, int plusWeek)
  5. toDayOfWeekInMonth(Calendar c, int dayOfWeek, int weekInMonth)
  6. weekday(String date)