- 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
Instant parse() method in Java
The string representation of an Instant can be obtained using the toString() method in the Instant class in Java. This method requires no parameters and it returns the string representation of the Instant.
A program that demonstrates this is given as follows −
Example
import java.time.*; public class Demo { public static void main(String[] args) { Instant i = Instant.now(); System.out.println("The current Instant is: " + i.toString()); } }
Output
The current Instant is: 2019-02-13T09:01:52.484Z
Now let us understand the above program.
The string representation of the current Instant is obtained using the toString() method. Then this is displayed. A code snippet that demonstrates this is as follows −
Instant i = Instant.now(); System.out.println("The current Instant is: " + i.toString());
- Related Articles
- Instant minusMillis() method in Java
- Instant minusNanos() method in Java
- Instant until() Method in Java
- Instant plus() method in Java
- Instant minus() method in Java
- Instant isSupported() method in Java
- Instant truncatedTo() method in Java
- Instant toString() method in Java
- Instant range() method in Java
- Instant get() method in Java
- Instant isBefore() method in Java
- Instant isAfter() method in Java
- Instant hashCode() method in Java
- Instant equals() method in Java
- Instant compareTo() method in Java

Advertisements