Categories

Tools

bitdefender

1&1 Web Hosting

Get information about the current date with Java


The following example shows some information about the current date. The example uses the Java class GregorianCalendar.

Code:

import java.util.*;

public class CurrentDateInformation
{
	public static void main(String[] args)
	{
	GregorianCalendar gc = new GregorianCalendar();
	
	System.out.println("DATE: " + gc.get(Calendar.DATE));		
	System.out.println("MONTH: " + gc.get(Calendar.MONTH));
	System.out.println("YEAR: " + gc.get(Calendar.YEAR));
	System.out.println();
	System.out.println("WEEK_OF_YEAR: " + gc.get(Calendar.WEEK_OF_YEAR));
	System.out.println("WEEK_OF_MONTH: " + gc.get(Calendar.WEEK_OF_MONTH));
	System.out.println();
	System.out.println("DAY_OF_WEEK: " + gc.get(Calendar.DAY_OF_WEEK));
	System.out.println("DAY_OF_MONTH: " + gc.get(Calendar.DAY_OF_MONTH));
	System.out.println("DAY_OF_YEAR: " + gc.get(Calendar.DAY_OF_YEAR));
	System.out.println("DAY_OF_WEEK_IN_MONTH: " + gc.get(Calendar.DAY_OF_WEEK_IN_MONTH));
	}
}

Result:

>java -cp . CurrentDateInformation
DATE: 14
MONTH: 4
YEAR: 2012

WEEK_OF_YEAR: 20
WEEK_OF_MONTH: 3

DAY_OF_WEEK: 2
DAY_OF_MONTH: 14
DAY_OF_YEAR: 135
DAY_OF_WEEK_IN_MONTH: 2
>Exit code: 0

Posted in Java by MdmSoft

If our work has been of help, you can help us with a small donation...
Our programmers will thank you!



All information contained in this web site are the property of MdmSoft. The information is provided "as is", MdmSoft will not be liable for any misuse of the code contained in these pages, nor can it be for inaccuracies, grammatical errors or other factors that may have caused damage or lost earnings. MdmSoft is not responsible for the content of comments posted by users.
The examples in this area have the educational and demonstration purposes only, and may be copied only for your reference, but cannot be used for commercial purposes, or for any other purpose, without the express written consent of MdmSoft.
MdmSoft also reserves the right to change, without notice, to your liking this web site, the pages and its sections, and may suspend temporarily or definitely the various services included on this site.
While using this site, you agree to have read and accepted our Terms of Service and Privacy Policy.