how to convert mm/dd/yy to dd/mm/yy using collections in
java.
Answer Posted / zaini
SimpleDateFormat srcDate = new SimpleDateFormat
("MM/dd/yyyy");
SimpleDateFormat destDate = new SimpleDateFormat
("MM/mm/yyyy");
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
How can we pass argument to a function by reference instead of pass by value?
What is a return in java?
How to declare objects of a class ?
Is java an open source?
What is core java called?
How do you control extraneous variables?
How destructors are defined in java?
How many bytes are a float?
Can java run on google chrome?
What is the basic concept of java?
Why singleton class is used in java?
How to compare two strings in java program?
What's the default access specifier for variables and methods of a class?
What are the two ways of implementing multi-threading in java?
What if I write static public void instead of public static void in java?