How to Convert String to Date in Java


This is the second part of the article which I have started around date and String in Java. In the first part we have seen about converting a java.util.



Check Here For How To Convert date To String In JAVA



Date object into String format and in this part we will see the other way around. Means you have String in any date format e.g. yyyyMMdd 20110924 and you want to create a java.util.Date object from that. We will list steps to convert String into Date in Java and then we will see different examples with different date formats e.g. ddMMyy or dd-MM-yyyy.






You can check the java doc of DateFormat for all the symbols it supports and what is meaning for that but here I am listing some common points which is worth remembering while working with SimpleDateFormat for conversion.



1) 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) SimpleDateFormat is not thread-safe. They are not synchronized so its better you create separate SimpleDateFormat for each thread to avoid any race condition while parsing.

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 .

How to String Split Example in Java

I don't know how many times I have split ed String in Java. Split is very common operation given various data sources e.g CSV file which contains input string in form of large string separated by comma. Splitting is necessary and Java API has great support for it. Java provides two convenience methods to split strings first within the java.lang.String class itself: split (regex) and other in java.util.StringTokenizer. Both are capable to split the string by any delimiter provided to them.



split string example in JavaIn this article we will see how to split string in Java both by using String’s split() method and StringTokenizer. If you have any doubt on anything related to split string please let me know and I will try to help.



Java Program to print Prime numbers in Java


How to print Prime numbers in Java or how to check if a number is prime or not is classical Java programming questions, mostly taught in Java programming courses. A number is called prime number if its not divisible by any number other than 1 or itself and you can use this logic to check whether a number is prime or not. This program is slightly difficult than printing even or odd number which are relatively easier Java exercises. This Simple Java program print prime number starting from 1 to 100 or any specified number. It also has a method which checks if a number is prime or not.



Here is complete sample code example to print prime numbers from 1 to any specified number. This Java program can also check if a number is prime or not as prime number checking logic is encapsulated in isPrime(int number) method.


How to reverse String in Java using Iteration and Recursion

Here is code example String reverse using iterative and recursive function written in Java. Recursive solution is just for demonstrative and education purpose, don’t use recursive solution in production code as it may result in StackOverFlowError if String to be reversed is very long String or if you have any bug in your reverse function, anyway its good test to make yourself comfortable with recursive functions in java.





Template by - Mathew | Mux99