- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
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
Locale-specific morning/afternoon indicator in Java
Locale-specific morning/afternoon indicator is the AM/PM marker indicator.
Use the ‘p’ conversion character to display AM/PM.
System.out.printf("Morning/afternoon indicator: %tp",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); } }
Output
Morning/afternoon indicator: pm Morning/afternoon indicator: PM
- Related Articles
- Locale-specific formatting in Java
- Importance of a Locale class in Java?
- What is a Locale class in Java?
- What is Common Locale Data Repository (CLDR) in Java 9?
- Java Program to get display name for Day of Week in different locale
- How to set locale programmatically in android app?
- Simplest way to detect client locale in PHP
- How to get locale information from Network provider in android?
- How can I get up early in the morning?
- How to compare two strings in the current locale with JavaScript?
- Explain the universal indicator.
- What is an Indicator?
- Give reason why sunlight looks reddish in the early morning?
- Why does the Sun appear reddish early in the morning?
- What is accumulation distribution indicator?

Advertisements