
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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\n", d);
Example
import java.util.Date; public class Demo { public static void main(String[] args) { Date d = new Date(); System.out.printf("Nanoseconds = %tN\n", d); } }
Output
Nanoseconds = 092000000
Advertisements