Click here to watch on Youtube:
https://www.youtube.com/watch?v=ftod97wMhcY&list=UUhwKlOVR041tngjerWxVccw
SqlDateDemo.java
Output
Click the below link to download the code:
https://sites.google.com/site/ramj2eev2/java_basics/SqlDateDemo_toLocalDate.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava_2018/SqlDateDemo_toLocalDate
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/4cfac93378c4f9d33f18bb5083115d18778294de/BasicJava_2018/SqlDateDemo_toLocalDate/?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=ftod97wMhcY&list=UUhwKlOVR041tngjerWxVccw
SqlDateDemo.java
import java.sql.Date;
import java.time.LocalDate;
public class SqlDateDemo
{
public static void main(String[] args)
{
long millis = System.currentTimeMillis();
java.sql.Date date = new Date(millis);
System.out.println(date);
/*
* Returns:
*
* a LocalDate object representing the same date value
*/
LocalDate localDate = date.toLocalDate();
System.out.println(localDate);
}
}
import java.time.LocalDate;
public class SqlDateDemo
{
public static void main(String[] args)
{
long millis = System.currentTimeMillis();
java.sql.Date date = new Date(millis);
System.out.println(date);
/*
* Returns:
*
* a LocalDate object representing the same date value
*/
LocalDate localDate = date.toLocalDate();
System.out.println(localDate);
}
}
Output
2018-10-22
2018-10-22
2018-10-22
Click the below link to download the code:
https://sites.google.com/site/ramj2eev2/java_basics/SqlDateDemo_toLocalDate.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava_2018/SqlDateDemo_toLocalDate
Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/4cfac93378c4f9d33f18bb5083115d18778294de/BasicJava_2018/SqlDateDemo_toLocalDate/?at=master
See also:
No comments:
Post a Comment