Operations with Calendar

Operations with Calendar

I have the following as my known parameter Effective Date : 21-08-2012 Cut off day : Thursday I want my first cycle calculation done from 21-08-2012 till wednesday(22-08-2012) and from thursday my second cycle of calcultion starts

My question is how to find the date of Thursday

This cycle repeats based on every cut off day

View Answers

August 21, 2012 at 6:06 PM

Here is an example that displays the date of all the thursdays of the given year.

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

public class GetDateFromDay{

   public String getDateOfWeekDay(int weekId, int year, int weekDay){
        Calendar cal = Calendar.getInstance();
        cal.set(Calendar.YEAR, year);
        cal.set(Calendar.WEEK_OF_YEAR, weekId);
        cal.set(Calendar.DAY_OF_WEEK, weekDay);

        SimpleDateFormat sdf = new SimpleDateFormat("dd-MM-yyyy");
        System.out.println(sdf.format(cal.getTime())); 
        return  sdf.format(cal.getTime());    
       }
        public static void main(String args[]){
        GetDateFromDay dt = new GetDateFromDay();
        for (int weekCount = 1; weekCount <= 53; weekCount++) {
        dt.getDateOfWeekDay(weekCount,2012,Calendar.THURSDAY);
      }
    }
}

August 23, 2012 at 1:55 PM

But I have a problem here

My Frequency Start Date is 24-08-2012

My frequency end date - not defined

Calculation Frequency is Weekly(Sunday)

My calculation will be from 24-08-2012 to the following sunday

My question is how to find the following date of sunday









Related Tutorials/Questions & Answers:
Operations with Calendar
Operations with Calendar  I have the following as my known parameter Effective Date : 21-08-2012 Cut off day : Thursday I want my first cycle... getDateOfWeekDay(int weekId, int year, int weekDay){ Calendar cal
calendar
calendar  I got one requirement like this i have to display a calendar with only current month and whenever user selects the date, that date needs to be display in a text field
Advertisements
calendar
calendar  sir, how to fix calendar in javascript..pls provide the complete source code..   Please visit the following link: http://www.roseindia.net/javascript/javascript-calendar.shtml
Java Calendar Example
operations on calendar dates."); // Get today's date Calendar date... GMT+05:30ADS_TO_REPLACE_5 Performing operations on calendar dates. Before...The following Java Calendar Example will discuss java.util.Calender class
Operations on string
Operations on string  Apply undo,redo operations on String pool in java
calendar - Date Calendar
Creating a Date calendar in Java  I am looking for a code for Creating a Date calendar in Java
calendar - Struts
Java calendar example  Please explain the Java calendar example
ModuleNotFoundError: No module named 'Operations'
ModuleNotFoundError: No module named 'Operations'  Hi, My Python... 'Operations' How to remove the ModuleNotFoundError: No module named 'Operations' error? Thanks   Hi, In your python environment you
calendar js
calendar js  there are two calendar on form and i want that once date chosen from first calendar , the second calendar should be disabled till that date. for eg once i have chosen date 21-03-2012 from first calendar
class Calendar - Java Beginners
Calendar,include the following operations: a.Determine the first day of the month for which the calendar will be printed.Call this operation firstDayOfMonth... print a calendar for any month starting Junuary 1,1500.Note that the day
Java Calendar !?
Java Calendar !?  I need to create a Java Calendar in an Applet. The calendar displays months (jan - dec) in a 3x4 grid ... jan feb march \n april.... so if a user picks the year 2000 show the calendar from that year. So how do i
Java Calendar issue - Date Calendar
Java Calendar issue  Hi I have having weird situation with java Calendar, its driving me crazy. My requirenment is that i got a xml schema element that accepts only Calendar Type Say element 2011-09-25T13:00:00 Say
javascript calendar popup code
javascript calendar popup code  javascript calendar popup code
Calendar Issues
Calendar Issues  I am trying to get this calendar to to display to date selected on a new page. Right now it opens a new page but does not diplay the date from the calendar on the previos page. Here is my code <!DOCTYPE
ModuleNotFoundError: No module named 'list_operations'
ModuleNotFoundError: No module named 'list_operations'  Hi, My... named 'list_operations' How to remove the ModuleNotFoundError: No module named 'list_operations' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'logion-operations'
ModuleNotFoundError: No module named 'logion-operations'  Hi, My... named 'logion-operations' How to remove the ModuleNotFoundError: No module named 'logion-operations' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'make-operations'
ModuleNotFoundError: No module named 'make-operations'  Hi, My... named 'make-operations' How to remove the ModuleNotFoundError: No module named 'make-operations' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'matrix-operations'
ModuleNotFoundError: No module named 'matrix-operations'  Hi, My... named 'matrix-operations' How to remove the ModuleNotFoundError: No module named 'matrix-operations' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'rpaframework-operations'
ModuleNotFoundError: No module named 'rpaframework-operations'  Hi...: No module named 'rpaframework-operations' How to remove the ModuleNotFoundError: No module named 'rpaframework-operations' error? Thanks   
ModuleNotFoundError: No module named 'Complex-Operations'
ModuleNotFoundError: No module named 'Complex-Operations'  Hi, My... named 'Complex-Operations' How to remove the ModuleNotFoundError: No module named 'Complex-Operations' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'logion-operations'
ModuleNotFoundError: No module named 'logion-operations'  Hi, My... named 'logion-operations' How to remove the ModuleNotFoundError: No module named 'logion-operations' error? Thanks   Hi, In your
ModuleNotFoundError: No module named 'make-operations'
ModuleNotFoundError: No module named 'make-operations'  Hi, My... named 'make-operations' How to remove the ModuleNotFoundError: No module named 'make-operations' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'text_operations'
ModuleNotFoundError: No module named 'text_operations'  Hi, My... named 'text_operations' How to remove the ModuleNotFoundError: No module named 'text_operations' error? Thanks   Hi, In your python
ModuleNotFoundError: No module named 'dist-operations'
ModuleNotFoundError: No module named 'dist-operations'  Hi, My... named 'dist-operations' How to remove the ModuleNotFoundError: No module named 'dist-operations' error? Thanks   Hi, In your python
Calendar
Calendar Operation
Calendar Operation  I have a date - example - 22-09-2012(start date) I have to find my end date based on the current quarter My input are month of the quarter which is a list box with values(1,2,3) , Day of the month in list
Calendar
Calendar       In this section we are displaying the days of  a specific month and the calendar format of the days for this month. We are also checking whether the year
CRUD operations in spring mvc 2.5
CRUD operations in spring mvc 2.5  Hi, I want to do CRUD operations on jquery datatable such as edit delete select and add row. I am using spring mvc 2.5. How can I do this. Thanks in advance
crud operations with foreign key constraint.
crud operations with foreign key constraint.  I neeed to know how to perform crud operations in mysql with foreign key constraint using mvc architecture i.e using servlet jsp and bean. please provide all the code so that i can
(Displaying a calendar in GUI
(Displaying a calendar in GUI  (Displaying a calendar) Write a program that displays the calendar for the current month, as Use labels, and set texts on the labels to display the calendar."The Calendar and GregorianCalendar
ModuleNotFoundError: No module named 'Calendar'
ModuleNotFoundError: No module named 'Calendar'  Hi, My Python... 'Calendar' How to remove the ModuleNotFoundError: No module named 'Calendar... to install padas library. You can install Calendar python with following
event calendar sample
event calendar sample  creating a event calendar for my small app in PHP.. can any one explain about it's design with example php event calendar script
j2me code - Date Calendar
j2me code  how to write a calendar program using alert
calendar in php code - PHP
calendar in php code   Any Idea to create a calendar for school in PHP? I need a simple nd handy code
Version of com.obdobion>calendar dependency
List of Version of com.obdobion>calendar dependency
Gregorian calendar class
Gregorian calendar class  Hai... What is the purpose of gregorian calendar class?   Java provides the standard calendar by providing the class GregorianCalendar in java.util package. The Gregorian calendar is used
Java Coding - Date Calendar
Java Coding  Write a program that prompts the user to enter the year and first day of the year and displays the calendar for the year on the console... 1,2005, your program should display the calendar for each month in the year
php date input calendar
php date input calendar  I'm having an issue while writing the date input calendar function in PHP.. any help? Thanks
codes for displaying in calendar
codes for displaying in calendar  can i get jsp codes for displaying comments, when the pointer is placed over the particular date in calendar
Javascript Create Calendar
Javascript Create Calendar  how to create calender application   Please visit the following link: Javascript create Calendar
What is Calendar class in Java?
What is Calendar class in Java?  Hi, What is Calendar class in Java? I want to learn about this class to make use of it in Java programs. Thanks... find tutorials at Calendar tutorial page. Thanks
ModuleNotFoundError: No module named 'custom-math-operations'
ModuleNotFoundError: No module named 'custom-math-operations'  Hi...: No module named 'custom-math-operations' How to remove the ModuleNotFoundError: No module named 'custom-math-operations' error? Thanks   Hi
ModuleNotFoundError: No module named 'custom-math-operations-gangulis'
ModuleNotFoundError: No module named 'custom-math-operations-gangulis' ...: ModuleNotFoundError: No module named 'custom-math-operations-gangulis' How to remove the ModuleNotFoundError: No module named 'custom-math-operations-gangulis' error
ModuleNotFoundError: No module named 'odoo8-addon-mrp-operations-extension'
ModuleNotFoundError: No module named 'odoo8-addon-mrp-operations-extension...: ModuleNotFoundError: No module named 'odoo8-addon-mrp-operations-extension' How to remove the ModuleNotFoundError: No module named 'odoo8-addon-mrp-operations
ModuleNotFoundError: No module named 'odoo8-addon-mrp-operations-project'
ModuleNotFoundError: No module named 'odoo8-addon-mrp-operations-project' ...: ModuleNotFoundError: No module named 'odoo8-addon-mrp-operations-project' How to remove the ModuleNotFoundError: No module named 'odoo8-addon-mrp-operations-project
ModuleNotFoundError: No module named 'odoo8-addon-mrp-operations-extension'
ModuleNotFoundError: No module named 'odoo8-addon-mrp-operations-extension...: ModuleNotFoundError: No module named 'odoo8-addon-mrp-operations-extension' How to remove the ModuleNotFoundError: No module named 'odoo8-addon-mrp-operations
ModuleNotFoundError: No module named 'odoo8-addon-mrp-operations-project'
ModuleNotFoundError: No module named 'odoo8-addon-mrp-operations-project' ...: ModuleNotFoundError: No module named 'odoo8-addon-mrp-operations-project' How to remove the ModuleNotFoundError: No module named 'odoo8-addon-mrp-operations-project
ModuleNotFoundError: No module named 'openerp-mrp-operations'
ModuleNotFoundError: No module named 'openerp-mrp-operations'  Hi...: No module named 'openerp-mrp-operations' How to remove the ModuleNotFoundError: No module named 'openerp-mrp-operations' error? Thanks   Hi
ModuleNotFoundError: No module named 'openerp-mrp-operations'
ModuleNotFoundError: No module named 'openerp-mrp-operations'  Hi...: No module named 'openerp-mrp-operations' How to remove the ModuleNotFoundError: No module named 'openerp-mrp-operations' error? Thanks   Hi
ModuleNotFoundError: No module named 'abao-matrix-operations'
ModuleNotFoundError: No module named 'abao-matrix-operations'  Hi...: No module named 'abao-matrix-operations' How to remove the ModuleNotFoundError: No module named 'abao-matrix-operations' error? Thanks   Hi

Ads