- 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 nanoseconds with Java Date and Time Conversion Character
To display nanoseconds, use the ‘N’ Date and Time conversion specifier.
System.out.printf("Nanoseconds = %tN
", d);
Example
import java.util.Date; public class Demo { public static void main(String[] args) { Date d = new Date(); System.out.printf("Nanoseconds = %tN
", d); } }
Output
Nanoseconds = 092000000
- Related Articles
- Display seconds since the epoch with Java Date and Time Conversion Character
- Displaymilliseconds since the epoch with Java Date and Time Conversion Character
- Display entire date time with milliseconds in Java
- Java Program to Display current Date and Time
- How to measure elapsed time in nanoseconds with Java?
- Java Program to display date and time in Milliseconds
- Display the Asian and American Date Time with Date Object in JavaScript
- Display complete date and time information using Formatter in Java
- Java Program to display date and time information in lowercase
- Java Program to display date and time information in uppercase
- Display today’s date in Java with SimpleDateFormat
- Conversion characters for date in Java
- Golang program to display current date and time
- How to display date and time picker in ReactNative?
- Display date and time in videos using OpenCV Python

Advertisements