Get Even More Visitors To Your Blog, Upgrade To A Business Listing >>

How to Convert Date to String in Java


Some times we need to convert Java.util.Date to String in java may for displaying purpose I need it that while working on displaytag then I thought about this article to list down various way of converting this in various ways, after some reading I found that Simpledateformat makes this quite easy. To get the feel of Date API in java and to familiarize ourselves with these classes we will see different examples of converting date to String in our application. Both DateFormat and SimpleDateFormat class belongs java.text package and they are very powerful and you can use them for conversion. It is also good for parsing string into date and can be used to show in various locale also.



Its very easy with the use of SimpleDateFormat, here are the exact steps:


convert date to string, simpleDateFormat in Java


1) First step is to create a date format using SimpleDateFormat class



2) Call format() method of SimpleDateFormat by passing Date object this will return String representation of date into specified date format.







For complete details on available symbols for date conversion you can check java doc of DateFormat and SimpleDateFormat class. Here are some important points about SimpleDateFormat which is worth remembering



1)Common point of confusion between “m” and “M” , small case “m” represent minutes while “M” represent Month Also “d” represent date in month while “D” represent Day of week. This is most common cause of error while converting String to date and back date to string. In shot ddMMyy is not equal to DDmmyy.



2)It’s also worth noting that SimpleDateFormat are not thread-safe. They are not synchronized so its better you create separate DateFormat for each thread to avoid any race condition while parsing date in java.



It’s very important for any java developer be it senior or junior to get familiarize himself with Date, Time and Calendar API. SimpleDateFormat is an excellent utility for converting String to Date and then Date to String but you just need to be little careful with format and thread-safety .

http://codesforprogrammers.blogspot.com/feeds/posts/default?alt=rss


This post first appeared on Codes For Programmers(C4P), please read the originial post: here

Share the post

How to Convert Date to String in Java

×

Subscribe to Codes For Programmers(c4p)

Get updates delivered right to your inbox!

Thank you for your subscription

×