- 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
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
Advertisements