Click here to watch on Youtube:
https://www.youtube.com/watch?v=ZOAtgTiff7k&list=UUhwKlOVR041tngjerWxVccw
SimpleDateFormatDemo.java
Output:
Click the below link to download the code:
https://sites.google.com/site/javaspringram2019/java_spring_2019/SimpleDateFormatDemo_applyLocalizedPattern.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java_Spring_2019/tree/master/Java_2019/SimpleDateFormatDemo_applyLocalizedPattern
Bitbucket Link:
https://bitbucket.org/ramram43210/java_spring_2019/src/4327965661b34e0cc17880946800be5f5d73f2dd/Java_2019/SimpleDateFormatDemo_applyLocalizedPattern/?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=ZOAtgTiff7k&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 - a String to be mapped to the new date and time
* format pattern for this format
*/
formatter.applyLocalizedPattern("dd-MMM-yyyy");
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 - a String to be mapped to the new date and time
* format pattern for this format
*/
formatter.applyLocalizedPattern("dd-MMM-yyyy");
String strDate = formatter.format(date);
System.out.println("Formatted date = "+strDate);
}
}
Output:
date = Wed Jan 09 12:13:47 IST 2019
Formatted date = 09-Jan-2019
Formatted date = 09-Jan-2019
Click the below link to download the code:
https://sites.google.com/site/javaspringram2019/java_spring_2019/SimpleDateFormatDemo_applyLocalizedPattern.zip?attredirects=0&d=1
Github Link:
https://github.com/ramram43210/Java_Spring_2019/tree/master/Java_2019/SimpleDateFormatDemo_applyLocalizedPattern
Bitbucket Link:
https://bitbucket.org/ramram43210/java_spring_2019/src/4327965661b34e0cc17880946800be5f5d73f2dd/Java_2019/SimpleDateFormatDemo_applyLocalizedPattern/?at=master
See also:
No comments:
Post a Comment