How to convert Date to String in Java?
Problem Description :
Write a program in Java that converts Date type to String type.
Concept :
For converting Date to String we have to use format() method of DateFormat class. This method accepts Date that you want to convert and returns String.
Recommended :
Java Program :
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.javamultiplex.datetime; | |
import java.text.DateFormat; | |
import java.text.SimpleDateFormat; | |
import java.util.Date; | |
/** | |
* | |
* @author Rohit Agarwal | |
* @category Date and Time | |
* @problem How to convert Date to String? | |
* | |
*/ | |
public class ConvertDateToString { | |
/* | |
* For converting Date to String we have to use format() method of | |
* DateFormat class. | |
*/ | |
public static void main(String[] args) { | |
// Creating Date class instance | |
Date date = new Date(); | |
System.out.println("Current date in Date format : " + date); | |
/* | |
* d -> Day of month | |
* M -> Month of year | |
* y -> Year | |
*/ | |
DateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy"); | |
String string = dateFormat.format(date); | |
System.out.println("Current date in String format dd/MM/yyyy : " + string); | |
} | |
} |
Output :
![]() |
Output - How to convert Date to String in Java? |
References :
Thank you friends, I hope you have clearly understood the solution of this problem. If you have any doubt, suggestion or query please feel free to comment below. You can also discuss this solution in our forum.
Tags : Conversion problems, Date to String in Java, Solution in Java, String, DateFormat, SimpleDateFormat.
How to convert Date to String in Java?
Reviewed by Rohit Agarwal
on
11/27/2016
Rating:

No comments:
Please provide your valuable comments. If you have any suggestion please share with me I will work on it and if you have any question or doubt please ask, don't hesitate. I am your friend, i will clarify all your doubts.