Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I used SimpleDateFormat:

SimpleDateFormat df = new SimpleDateFormat("yyyy/MM/dd hh:mm:ss");
value.adStartDate = df.parse("2011/11/11 11:11:11");

I was hoping the date would come out like the string I provided, but instead I am getting this:

Fri Nov 11 2011 11:11:11 GMT-0500 (Eastern Standard Time)

This is showing on a form that I created using Javascript...

Is there a way to "force" the output on the form to be like the string?

Basically I want to pass a date with format "yyyy/MM/dd hh:mm:ss" to a form that was generated using Javascript and have the form display it in that same format.

share|improve this question
The problem is caused by the way how you passed that back to the HTML. After all, you need SimpleDateFormat#format() to convert Date to String in the desired pattern. – BalusC Aug 31 '11 at 17:52
Are you using the Date for any intermediate purpose in your Java code? Because if not you are just adding a level of 'complexity' to your code for no added benefit. – Perception Aug 31 '11 at 18:07

2 Answers

up vote 1 down vote accepted

One thing is parsing and another thing is formatting.

Check this example in order to display the formatted string.

@Test
    public void testDateFormat() throws ParseException {
        SimpleDateFormat df = new SimpleDateFormat("yyyy/MM/dd hh:mm:ss");
        Date myDate = df.parse("2011/11/11 11:11:11");
        System.out.println(df.format(myDate));
    }

Output:

2011/11/11 11:11:11

share|improve this answer

What do you want to achieve? You have successfully parsed "2011/11/11 11:11:11" String into java.util.Date object. Date.toString() yields the string you see (Fri Nov 11 2011 11:11:11 GMT-0500 (Eastern Standard Time)).

If you now want to format the Date object back to String, use df.format() which does the opposite thing compared to df.parse().

share|improve this answer
I thought that as well, but the Date#toString() has a bit different format. The year should be after the time. There's more happening here. – BalusC Aug 31 '11 at 17:52
True, it's actually written in the JavaDoc: dow mon dd hh:mm:ss zzz yyyy - weird... – Tomasz Nurkiewicz Aug 31 '11 at 17:58
well basically i want to pass a date in "yyyy/mm/dd hh:mm:ss" format to a form and have that form display the date in that same format... – Joe Chen Aug 31 '11 at 18:00
1  
@Joe: use format() method to convert Date to String. The Date doesn't remember any format. All it holds is the epoch time. All its toString() does is printing a builtin and predefinied format (however, whatever you got is not the same, how were you passing it and what Java version are you using?) – BalusC Aug 31 '11 at 18:00
1  
No. You need to convert in Java before passing. JavaScript doesn't understand java.util.Date objects or something. All it understands from the server side are plain strings. – BalusC Aug 31 '11 at 18:06
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.