163 subscribers
3.42K photos
24 videos
39 files
371 links
Link: @java_posts

Contact: java.response.email@gmail.com
Download Telegram
Java Convert String to double
We can convert String to double in java using Double.parseDouble() method.
#Source_code
#Conversion
#98
Java Convert Date to String
We can convert Date to String in java using format() method of java.text.DateFormat class.

format() method of DateFormat
The format() method of DateFormat class is used to convert Date into String. DateFormat is an abstract class. The child class of DateFormat is SimpleDateFormat. It is the implementation of DateFormat class.
#Source_code
#Conversion
#99