Click here to watch on Youtube: 
https://www.youtube.com/watch?v=pI6fbzXh8W8&list=UUhwKlOVR041tngjerWxVccw
ZoneOffsetDemo.java
Output
Click the below link to download the code:
https://sites.google.com/site/ramj2eev1/home/javabasics/ZoneOffsetDemo_of.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/ZoneOffsetDemo_of
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/dc7c5f1cf2584c5bc7f3eb33e62ff414965c0d6f/BasicJava/ZoneOffsetDemo_of/?at=master
See also:
All JavaEE Videos Playlist 
All JavaEE Videos 
All JAVA EE Links 
Servlets Tutorial 
All Design Patterns Links 
JDBC Tutorial 
Java Collection Framework Tutorial 
JAVA Tutorial 
Kids Tutorial 
Cooking Tutorial 
https://www.youtube.com/watch?v=pI6fbzXh8W8&list=UUhwKlOVR041tngjerWxVccw
ZoneOffsetDemo.java
import java.time.ZoneOffset;
public class ZoneOffsetDemo
{
public static void main(String[] args)
{
/*
* Parameters:
*
* offsetId - the offset ID, not null
*
* Returns:
*
* the zone-offset, not null
*
*/
ZoneOffset zoneOffset = ZoneOffset.of("+01:00");
System.out.println("zoneOffset = " + zoneOffset);
}
}
public class ZoneOffsetDemo
{
public static void main(String[] args)
{
/*
* Parameters:
*
* offsetId - the offset ID, not null
*
* Returns:
*
* the zone-offset, not null
*
*/
ZoneOffset zoneOffset = ZoneOffset.of("+01:00");
System.out.println("zoneOffset = " + zoneOffset);
}
}
Output
zoneOffset = +01:00
Click the below link to download the code:
https://sites.google.com/site/ramj2eev1/home/javabasics/ZoneOffsetDemo_of.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/ZoneOffsetDemo_of
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/dc7c5f1cf2584c5bc7f3eb33e62ff414965c0d6f/BasicJava/ZoneOffsetDemo_of/?at=master
See also:
 


 
No comments:
Post a Comment