- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- 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("
Localized month : %tB
", 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("
Morning/afternoon indicator: %Tp",d); System.out.printf("
Localized month : %tB
", 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
- Related Articles
- Get localized day name in Java
- Display month by name and number in Java
- Get localized short day-in-week name in Java
- Display the current method name in Java
- Display the month number with SimpleDateFormat(“M”) in Java
- Display two-digit month in Java
- Display Month in MMM format in Java
- Display Month in MMMM format in Java
- How to format date using printf() method in Java?
- How to format time using printf() method in Java?
- Format numerical data with printf in Java
- Display three letter-month value with SimpleDateFormat('MMM') in Java
- Display Month of Year using Java Calendar
- How to use formatting with printf() correctly in Java?
- Display two-digit day of the month in Java

Advertisements