
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Display Localized Month Name with printf Method in Java
To display localized method name in Java, use the ‘B’ conversion character.
System.out.printf("Localized month : %TB", d);
To display method name in lowercase, use the “%tb”
System.out.printf("\nLocalized month : %tB\n", d);
Example
import java.util.Date; public class Demo { public static void main(String[] args) { Date d = new Date(); System.out.printf("Morning/afternoon indicator: %tp",d); System.out.printf("\nMorning/afternoon indicator: %Tp",d); System.out.printf("\nLocalized month : %tB\n", d); System.out.printf("Localized month : %TB", d); } }
Output
Morning/afternoon indicator: pm Morning/afternoon indicator: PM Localized month : November Localized month : NOVEMBER
Right justify and left justify values in Java
Advertisements