Wednesday 14 November 2018

java.sql.Date class Introduction | Java Date and Time | Date and Time in java


Click here to watch on Youtube:
https://www.youtube.com/watch?v=OWxIxG4nQ1w&list=UUhwKlOVR041tngjerWxVccw

Click the below Image to Enlarge:
java.sql.Date class Introduction | Java Date and Time | Date and Time in java

SqlDateDemo.java

import java.sql.Date;

public class SqlDateDemo
{
    public static void main(String[] args)
    {
        long millis = System.currentTimeMillis();
        Date date = new Date(millis);
        System.out.println(date);
    }

}

Output

2018-10-12

Refer: 
https://docs.oracle.com/javase/8/docs/api/index.html?java/sql/Date.html
 
Click the below link to download the code:
https://sites.google.com/site/ramj2eev2/java_basics/SqlDateDemo_Intro.zip?attredirects=0&d=1

Github Link:
https://github.com/ramram43210/Java/tree/master/BasicJava_2018/SqlDateDemo_Intro

Bitbucket Link:
https://bitbucket.org/ramram43210/java/src/4cfac93378c4f9d33f18bb5083115d18778294de/BasicJava_2018/SqlDateDemo_Intro/?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
  • No comments:

    Post a Comment