Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8262065
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T03:38:14+00:00 2026-06-08T03:38:14+00:00

Hi i am creating instance of Calendar Using: Calendar calendarDate=Calendar.getInstance(); calendarDate.set(2012, 6, 1,0,0,0); Date

  • 0

Hi i am creating instance of Calendar Using:

Calendar calendarDate=Calendar.getInstance();
            calendarDate.set(2012, 6, 1,0,0,0);
                Date date1=calendar.getTime();

After that i create instance of java.util.date using:

Date date2=new Date(2012 - 1900,7-1, 01);

Now when i am trying to compare dates using following code:

System.out.println(date2.compareTo(date1));
System.out.println(date1.compareTo(date2));

it prints -1 and 1 instead of 0(zero).
Can any one help me to find what’s goes wrong ?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T03:38:16+00:00Added an answer on June 8, 2026 at 3:38 am

    Try to clear the value of calendar before set a new one. This will solve your problem.

    Calendar calendarDate=Calendar.getInstance();
    calendarDate.clear();
    calendarDate.set(2012, 6, 1,0,0,0);
    

    Test for it:

    import java.util.Calendar;
    import java.util.Date;
    
    import org.junit.Assert;
    
    public class DateTest {
    
        @org.junit.Test
        public void test() {
            Calendar calendarDate=Calendar.getInstance();
            calendarDate.clear();
            calendarDate.set(2012, 6, 1,0,0,0);
            Assert.assertEquals(0, calendarDate.getTime().compareTo(new Date(2012 - 1900,7-1, 01)));
        }
    
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm creating an instance of java.util.Calendar class: Calendar rightNow = Calendar.getInstance(); getInstance() gets a
I have some code using a System.Transactions.TransactionScope , that creating a new instance of
I'm creating a android.text.format.Time Object from a java.util.Calendar Instance, and I read it out
While creating classes in Java I often find myself creating instance-level collections that I
I have problem creating new instance of excel 2007 using VBA (from Access 2002).
I'm having trouble creating an instance of a class using Python's re module. Here's
I'm using the Ninject Factory Extension and creating a custom instance provider explained in
Let's say I am creating an instance of a class object that has both
I am using threaded timer which is creating new instance and call a method
While creating a JFrame and adding some components I noticed that if I create

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.