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 |
Explain the difference between an Interface and an Abstract class?
Can you explain the Java thread lifecycle?
Which class is extended by all other classes?
What is stack explain?
What is integer size in java?
What lambda means?
What are local variables?
Difference between object and reference?
explain about method overloading and method overriding with difficult examples
Distinguish between a predicate and a function?
Are the imports checked for validity at compile time? Will the code containing an import such as java.lang.abcd compile?
What class of exceptions are generated by the java run-time system?