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

 Live Demo

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

Updated on: 27-Jun-2020

75 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements