Click here to watch on Youtube:
https://www.youtube.com/watch?v=dMqHjHXsA_4&list=UUhwKlOVR041tngjerWxVccw
SimpleDateFormatDemo.java
Output:
Click the below link to download the code:
https://sites.google.com/site/javaspringram2019/java_spring_2019/SimpleDateFormatDemo_applyPattern.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java_Spring_2019/tree/master/Java_2019/SimpleDateFormatDemo_applyPattern
Bitbucket Link:
https://bitbucket.org/ramram43210/java_spring_2019/src/4327965661b34e0cc17880946800be5f5d73f2dd/Java_2019/SimpleDateFormatDemo_applyPattern/?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=dMqHjHXsA_4&list=UUhwKlOVR041tngjerWxVccw
SimpleDateFormatDemo.java
import java.text.SimpleDateFormat;
import java.util.Date;
public class SimpleDateFormatDemo
{
public static void main(String[] args)
{
Date date = new Date();
System.out.println("date = "+date);
SimpleDateFormat formatter = new SimpleDateFormat();
/*
* Parameters:
*
* pattern - the new date and time pattern for this date
* format
*/
formatter.applyPattern("MMM");
String strDate = formatter.format(date);
System.out.println("Formatted date = "+strDate);
}
}
import java.util.Date;
public class SimpleDateFormatDemo
{
public static void main(String[] args)
{
Date date = new Date();
System.out.println("date = "+date);
SimpleDateFormat formatter = new SimpleDateFormat();
/*
* Parameters:
*
* pattern - the new date and time pattern for this date
* format
*/
formatter.applyPattern("MMM");
String strDate = formatter.format(date);
System.out.println("Formatted date = "+strDate);
}
}
Output:
date = Wed Jan 09 12:25:40 IST 2019
Formatted date = Jan
Formatted date = Jan
Click the below link to download the code:
https://sites.google.com/site/javaspringram2019/java_spring_2019/SimpleDateFormatDemo_applyPattern.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java_Spring_2019/tree/master/Java_2019/SimpleDateFormatDemo_applyPattern
Bitbucket Link:
https://bitbucket.org/ramram43210/java_spring_2019/src/4327965661b34e0cc17880946800be5f5d73f2dd/Java_2019/SimpleDateFormatDemo_applyPattern/?at=master
See also:
No comments:
Post a Comment