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
Can constructor be static or final?
What is a buffer in java?
What do heavy weight components mean in java programming?
Is there any limitation of using inheritance?
What is an eror in java?
What is string [] java?
What is entry set in java?
What is the lifetime and scope of a variable?
Can we start a thread twice in java?
What does method mean?
Can a top level class be private or protected?
Is java code slower than native code?
How can we use primitive data types as objects?
What is bom encoding?
Differentiate between static and non-static methods in java.