Click here to watch on Youtube:
https://www.youtube.com/watch?v=6Ly_UjiLpIA&list=UUhwKlOVR041tngjerWxVccw
GregorianCalendarDemo.java
Output
Click the below link to download the code:
https://sites.google.com/site/ramj2eev2/java_basics/GregorianCalendarDemo_isWeekDateSupported.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava_2018/GregorianCalendarDemo_isWeekDateSupported
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/4cfac93378c4f9d33f18bb5083115d18778294de/BasicJava_2018/GregorianCalendarDemo_isWeekDateSupported/?at=master
See also:
All JavaEE Videos Playlist 
All JavaEE Videos 
All JAVA EE Links 
Spring Tutorial 
Servlets Tutorial 
All Design Patterns Links 
JDBC Tutorial 
Java Collection Framework Tutorial 
JAVA Tutorial 
Kids Tutorial 
Cooking Tutorial 
https://www.youtube.com/watch?v=6Ly_UjiLpIA&list=UUhwKlOVR041tngjerWxVccw
GregorianCalendarDemo.java
import java.util.GregorianCalendar;
public class GregorianCalendarDemo
{
public static void main(String[] args)
{
GregorianCalendar cal = (GregorianCalendar) GregorianCalendar
.getInstance();
System.out.println(cal.getTime());
/*
* Returns:true (always)
*/
boolean isWeekDateSupported = cal.isWeekDateSupported();
System.out.println(isWeekDateSupported);
}
}
public class GregorianCalendarDemo
{
public static void main(String[] args)
{
GregorianCalendar cal = (GregorianCalendar) GregorianCalendar
.getInstance();
System.out.println(cal.getTime());
/*
* Returns:true (always)
*/
boolean isWeekDateSupported = cal.isWeekDateSupported();
System.out.println(isWeekDateSupported);
}
}
Output
Tue Oct 09 09:30:40 IST 2018
true
true
Click the below link to download the code:
https://sites.google.com/site/ramj2eev2/java_basics/GregorianCalendarDemo_isWeekDateSupported.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava_2018/GregorianCalendarDemo_isWeekDateSupported
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/4cfac93378c4f9d33f18bb5083115d18778294de/BasicJava_2018/GregorianCalendarDemo_isWeekDateSupported/?at=master
See also:

No comments:
Post a Comment