Click here to watch on Youtube :
https://www.youtube.com/watch?v=GufQJKmlkzk&list=UUhwKlOVR041tngjerWxVccw
OffsetDateTimeDemo.java
Output
Click the below link to download the code:
https://sites.google.com/site/ramj2eev1/home/javabasics/OffsetDateTimeDemo_withOffsetSameLocal.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/OffsetDateTimeDemo_withOffsetSameLocal
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/572947048c5892379e75d8e421fa231c20e2d3bc/BasicJava/OffsetDateTimeDemo_withOffsetSameLocal/?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
https://www.youtube.com/watch?v=GufQJKmlkzk&list=UUhwKlOVR041tngjerWxVccw
OffsetDateTimeDemo.java
import java.time.OffsetDateTime;
import java.time.ZoneOffset;
public class OffsetDateTimeDemo
{
public static void main(String[] args)
{
OffsetDateTime offsetDateTime1 = OffsetDateTime
.parse("2017-02-03T10:15:30+01:00");
System.out.println("offsetDateTime1 = " + offsetDateTime1);
/*
* Parameters:
*
* offset - the zone offset to change to, not null
*
* Returns:
*
* an OffsetDateTime based on this date-time with the
* requested offset, not null
*/
OffsetDateTime offsetDateTime2 = offsetDateTime1
.withOffsetSameLocal(ZoneOffset.UTC);
System.out.println("Offset changed = " + offsetDateTime2);
}
}
import java.time.ZoneOffset;
public class OffsetDateTimeDemo
{
public static void main(String[] args)
{
OffsetDateTime offsetDateTime1 = OffsetDateTime
.parse("2017-02-03T10:15:30+01:00");
System.out.println("offsetDateTime1 = " + offsetDateTime1);
/*
* Parameters:
*
* offset - the zone offset to change to, not null
*
* Returns:
*
* an OffsetDateTime based on this date-time with the
* requested offset, not null
*/
OffsetDateTime offsetDateTime2 = offsetDateTime1
.withOffsetSameLocal(ZoneOffset.UTC);
System.out.println("Offset changed = " + offsetDateTime2);
}
}
Output
offsetDateTime1 = 2017-02-03T10:15:30+01:00
Offset changed = 2017-02-03T10:15:30Z
Offset changed = 2017-02-03T10:15:30Z
Click the below link to download the code:
https://sites.google.com/site/ramj2eev1/home/javabasics/OffsetDateTimeDemo_withOffsetSameLocal.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava/OffsetDateTimeDemo_withOffsetSameLocal
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/572947048c5892379e75d8e421fa231c20e2d3bc/BasicJava/OffsetDateTimeDemo_withOffsetSameLocal/?at=master
See also:
No comments:
Post a Comment