how to convert mm/dd/yy to dd/mm/yy using collections in
java.
Answers were Sorted based on User's Feedback
Answer / sankar
Hi, Here is the Program
import java.util.Date;
import java.text.SimpleDateFormat;
class DateConversion{
public static void main(String ar[])throws Exception
{
String strDate = "06/12/2008";
SimpleDateFormat srcDate = new SimpleDateFormat
("mm/dd/yyyy");
SimpleDateFormat destDate = new SimpleDateFormat
("dd/mm/yyyy");
System.out.println(destDate.format
(srcDate.parse(strDate)));
}
}
| Is This Answer Correct ? | 19 Yes | 6 No |
Answer / sandya
Thanks Shankar.
can u send more examples on Date.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / zaini
SimpleDateFormat srcDate = new SimpleDateFormat
("MM/dd/yyyy");
SimpleDateFormat destDate = new SimpleDateFormat
("MM/mm/yyyy");
| Is This Answer Correct ? | 1 Yes | 1 No |
What is class variable java?
What is the format of Inner Class after it compiled?
What is r * in math?
What does indexof mean?
What is array sorting in java?
which of tha following is not a thread safe class? a) ArrayList b)Vector c)HashTable d)None
What Is Resource Leak?
Difference between the String and StringBuffer classes?
How Marker Interfaces are instruct to complete the desired need ?
Differentiate storage classes on the basis of their scope?
What is casting ?
how can u handle run time exception in java? explain with brief explanation with examples?