Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
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
