Creating a Date Object for a Particular Date : Date « Data Type « Java






Creating a Date Object for a Particular Date

    

import java.util.Calendar;
import java.util.Date;
import java.util.GregorianCalendar;

public class Main {
  public static void main(String[] argv) throws Exception {

    Calendar xmas = new GregorianCalendar(1998, Calendar.DECEMBER, 25);
    Date date = xmas.getTime();
  }
}

   
    
    
    
  








Related examples in the same category

1.Create instance of java.sql.Date from Calendar.getTimeInMillis()
2.Create java Date from specific time example
3.Convert string of time to time object
4.Convert String to Date object
5.Convert a String to Date
6.Check if a String is a valid date
7.Compare two Java Date objects using after method example
8.Compare two Java Date objects using before method example
9.Compare two Java Date objects using compareTo method example
10.Sets the day of month field to a date returning a new object.
11.Sets the hours field to a date returning a new object. Hours range from 0-23.
12.Sets the miliseconds field to a date returning a new object.
13.Sets the minute field to a date returning a new object.
14.Sets the seconds field to a date returning a new object.
15.Sets the years field to a date returning a new object.
16.Truncate this date(Calendar), leaving the field specified as the most significant field.
17.Truncate this date, leaving the field specified as the most significant field.
18.Convert date string from one format to another format using SimpleDateFormat
19.Convert Date into milliseconds example
20.A formatter that formats dates to show the elapsed time relative to some base date.
21.Return now as a string
22.Return today as a string
23.Date Utils
24.Collection of useful utilities to work with dates
25.Encapsulates a truck-load of commonly used date functions
26.Date utility class