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 j2se

3 Answers  


Program to print 1 1 2 1 2 3 1 2 3 4 like that

8 Answers   Huawei,


What is module in project?

0 Answers  


How big is a gigabyte?

0 Answers  


What is a boolean used for?

0 Answers  






Difference between prefix and postfix forms of the ++operator?

3 Answers  


What super () does in java?

0 Answers  


Does java initialize arrays to zero?

0 Answers  


What should I import for arraylist in java?

0 Answers  


How many bits are used to represent unicode, ascii, utf-16, and utf-8 characters in java programming?

0 Answers  


What are types of Java applications?

14 Answers  


Name the method that used to clear the buffer ?

2 Answers  


Categories