java yesterday

java yesterday

View Answers

October 11, 2008 at 11:43 AM

for getting year month and days between two dates use following code

and for took a calender from another windwo use java script

package rajanikant.code.sep_2008;

import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Calendar;
import java.util.Date;

public class DateDifference {

public static void main(String s[]) throws ParseException{


Date date1 = new Date();
Calendar calendar = Calendar.getInstance();

calendar.setTime(date1);
int cur_month = calendar.get(Calendar.MONTH)+1;
int cur_year = calendar.get(Calendar.YEAR);
int cur_date = calendar.get(Calendar.DATE);
String df1 = cur_date + "-" + cur_month + "-" + cur_year;

SimpleDateFormat sdf = new SimpleDateFormat("dd-MM-yyyy");
Date date2;
String newdate = "19-07-2006";
date2 = sdf.parse(newdate);
calendar.setTime(date2);
int month = calendar.get(Calendar.MONTH)+1;
int year = calendar.get(Calendar.YEAR);
int date = calendar.get(Calendar.DATE);

String df2 = date + "-" + month + "-"+ year;

int day = 0;
int no_of_days = 0;
int flag = 0;
if (cur_year % 4 == 0) {

if (cur_year % 100 != 0) {
flag = 1;
}
else if (cur_year % 400 == 0) {
flag = 1;
}
else {
flag = 0;
}
}
// It is not divisible by 4.
else {
flag = 0;
}
if(cur_month == 2){
if(flag == 1){
no_of_days = 29;
}else{
no_of_days = 28;
}
}


if(cur_month == 1 || cur_month == 3 || cur_month == 5 || cur_month == 7 || cur_month == 8 || cur_month == 10 || cur_month == 12){
no_of_days = 31;
}
if(cur_month == 4 || cur_month == 6 || cur_month == 9 || cur_month == 11){
no_of_days = 30;
}
if(cur_date > date){
day = cur_date - date;
}else{
day = cur_date - date + no_of_days;
cur_month = cur_month - 1;
}

if(cur_month > month){
cur_month = cur_month - month;
}else{
cur_month = cur_month - month + 12;
cur_year = cur_year - 1;
}
if(cur_year > year){
cur_year = cur_year - year;
}else{
cur_year = 0;
}

System.out.println("Difference Between " + df1 + " and " + df2 + " is : " +cur_year + " Year " + cur_month + " Month " +day + " Days");
}
}


Rajanikant









Related Tutorials/Questions & Answers:
java yesterday - Date Calendar
java yesterday  Afternoon,Yesterday i have a question that how to make date sustract, the result is to make 1 month and 1 day like this, right. now... a calender from another windwo use java script package rajanikant.code.sep_2008
java yesterday - Date Calendar
java yesterday  And how to make date format DD/MM/YYYY,thank's  Hi friend, Code to help solve the Problem : import java.util.Date; import java.text.SimpleDateFormat; public class SimpleFormatDate { public
Advertisements
Java get yesterday's date
Java get yesterday's date   ... the yesterday's date.  In the given example, we simply get the current date by using... dateFormat.format(cal.getTime()) will displayed the yesterday's date.ADS_TO_REPLACE_1
ModuleNotFoundError: No module named 'yesterday'
ModuleNotFoundError: No module named 'yesterday'  Hi, My Python... 'yesterday' How to remove the ModuleNotFoundError: No module named 'yesterday' error? Thanks   Hi, In your python environment you
javascript yesterday date.
javascript yesterday date.  Hi, How can I display the yesterday's...() mydate.setDate(mydate.getDate()-1) document.write("Yesterday Date :" +mydate.getDate.... By above example you can easily get yesterday date.you can also put any
How to get yesterday date in Python?
Yesterday's date in Python - How to get yesterday date in Python? Python... API. In this article we will learn how to get yesterday's date in the Python... the yesterday's date. The Python datetime classes are distributed with the default
Java Inheritance Concept.
Java Inheritance Concept.  Yesterday i got confused with following question in an aptitude exam. Question:Class A,B,C have method named doit(). Class B extends Class A,Class C extends Class B.How will you call method doit
Java Stream Write Exception
Java Stream Write Exception  I am doing socket programming. I have two files called Server.java and client.java. Both programs were running successfully and successfully sending data to each other. Yesterday I added the following
java
java  Hi Mr.Deepak, As per the yesterday's question thanks for your reply but i dont have any problem with database url, the same url is connecting to database, i think the problem is i dont knw how to create bean file means
continue java - Date Calendar
continue java  How to make a subtract date from jframe like jtexfield, data can input into jtextfied ? and how to get year, yesterday a have a question about how to substract dd mm yyyy can in this subtract have a year.thank
Another Question - Java Beginners
Another Question  This is the question I posted yesterday: "I'm... with a command line menu. The choices are p, f, q and n. In case of choice n, ask the user... great! The only thing is how do I make the command line to accept letters p, f, q
very urgent - Java Server Faces Questions
very urgent  Hi sir, yesterday i send total my code to find where i have done mistake ,you send a reply for that also but in that you told remove the tags form my code,i removed those tags and i excuted that. Still the desired
java - JDBC
java  how to find no.of rows in a table  hai friend..... i think i have given the answer for this yesterday......... the sql command is select count(*) from tablename; this command retrns the number of rows
java again - Date Calendar
java again  I can't combine your source code yesterday, can you help me again. My problem is how we get result jtextfield2 from if jtexfield1 we enter(jTextfield keypressed) then the result out to jTextfield2, This my jFrame
How to get today's date in java in mm/dd/yyyy format?
Today's Date in MM/dd/yyyy format in Java - How to get today's date in java in mm/dd/yyyy format? In this tutorial we are going to show you some examples of getting the current date in Java in MM/dd/yyyy format. Here MM
how to mark different colors for diffent rows - Java Beginners
how to mark different colors for diffent rows  Hi frends, Actually yesterday i had a question that, how can i mark colors to my rows in the table using swings.............one of my frend posted the solution also
java - Java Beginners
java  hi, Yesterday you send one code.its very useful for me. But that code how can i add new another tab. This is the code .. import java.awt.*; import javax.swing.*; import java.awt.event.*; public class
Searching with alphabetical order - Java Beginners
the dropdown box, and aftr submittin....use the code i gave on yesterday
Java Get Example
_TO_REPLACE_4 Java get yesterday's date In the given example... the yesterday's date. Java get number of days between dates... Java Get Example      
Timer in the code - Java Beginners
Timer in the code  This is the question I posted yesterday: "I'm trying to write a program that has a text field for input, two buttons and the output text area. A user is asked to type in a number. The first button when pressed
Problem with Hibernate or 11g
Problem with Hibernate or 11g  Hi I am using Hibernate and 11g in my project. The problem I am facing is I am executing a query from java class everyday at 8 PM to get a table data from yesterday 7:30 PM to today 7:30 PM based
jsp
jsp  I can't get any answer please guide me..i got an exception which is shown in star above in my yesterday program
java - Java Beginners
java  Hi friends yesterday i asked you this...How do i write a program that has maybe 5 labels and 5 textboxes for student details, name, surname, id no., address, cell no., student no.. Then when the user inputs data
Java Get Example
_TO_REPLACE_4 Java get yesterday's date In the given... the yesterday's date. Java get number of days between... Java Get Example      
Error in a code. - Java Beginners
Error in a code.  This is the question I posted yesterday: "I'm trying to write a program that has a text field for input, two buttons... menu. The choices are p, f, q and n. In case of choice n, ask the user to input
java
java  diff bt core java and java
java
java  what is java
JAVA
JAVA  how the name came for java language as "JAVA
java
java   why iterator in java if we for loop
java
java  explain technologies are used in java now days and structure java
java
java  different between java & core java
Java
Java   Whether Java is pure object oriented Language
java
java  is java open source
java
java  what is java reflection
java
java   in java does not pointers concept but what is nullpointers in java?   nullpointer is a runtime Exception
java
what is the size of array in java ?  what is the size of array in java ? what is the mean of finalize in java
java
java  give a simple example for inheritance in java
java
java  why to set classpath in java
java
java  Does java allows multiline comments
java
java  what are JAVA applications development tools
Java
Java   Whether Java is Programming Language or it is SOftware
java
java  explain object oriented concept in java
java
java   difference between class and interface
Java
Java  how to draw class diagrams in java
java
java  give a simple example for inheritance in java
java
java  why to set classpath in java
java
java  why to set classpath in java
java
java  why to set classpath in java
java
java   What is ?static? keyword
java
java  RARP implementation using java socket

Ads