how to convert mm/dd/yy to dd/mm/yy using collections in
java.

Answers were Sorted based on User's Feedback



how to convert mm/dd/yy to dd/mm/yy using collections in java...

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

how to convert mm/dd/yy to dd/mm/yy using collections in java...

Answer / sandya

Thanks Shankar.
can u send more examples on Date.

Is This Answer Correct ?    3 Yes 0 No

how to convert mm/dd/yy to dd/mm/yy using collections in java...

Answer / ravi jain

Dear Sankar ur ans is ok bur it has some mistakes

suppose if some one enter month value <12,
this program accept dis as well
can u modify dis so that it wouldn't accept
month value greater than 12...

Ravi jain

Is This Answer Correct ?    2 Yes 2 No

how to convert mm/dd/yy to dd/mm/yy using collections in java...

Answer / 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

More Core Java Interview Questions

What is nan inf?

0 Answers  


A non-static inner class may have object instances that are associated with instances of the class’s outer class. A static inner class does not have any object instances.

0 Answers  


What is the basic of java?

0 Answers  


What is OOP's Terms with explanation?

0 Answers  


How can we create a thread in java?

0 Answers  


How can a class be accessed, If no access modifiers are declared?

4 Answers  


Compare Mutex and Semaphore in java.

0 Answers   Ciena,


what is difference between equals and ==?

0 Answers  


What are the drawbacks for singleton class?

0 Answers  


What is reverse function?

0 Answers  


What is not thread safe?

0 Answers  


State the merge-sort principle and its time complexity.

0 Answers   Akamai Technologies,


Categories