<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Convert Date to String and String to Date in Java</title>
	<atom:link href="http://techtracer.com/2007/03/28/convert-date-to-string-and-string-to-date-in-java/feed/" rel="self" type="application/rss+xml" />
	<link>http://techtracer.com/2007/03/28/convert-date-to-string-and-string-to-date-in-java/</link>
	<description>Tracing the course of Web Technology</description>
	<lastBuildDate>Fri, 12 Mar 2010 12:50:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Damien Stimmel</title>
		<link>http://techtracer.com/2007/03/28/convert-date-to-string-and-string-to-date-in-java/comment-page-1/#comment-36725</link>
		<dc:creator>Damien Stimmel</dc:creator>
		<pubDate>Fri, 05 Mar 2010 01:43:13 +0000</pubDate>
		<guid isPermaLink="false">http://techtracer.com/2007/03/28/convert-date-to-string-and-string-to-date-in-java/#comment-36725</guid>
		<description>Hi, I found this post while searching for help with JavaScript. I&#039;ve recently changed browsers from Safari to Internet Explorer 7. Just recently I seem to have a issue with loading JavaScript. Every time I go on a site that needs Javascript, my computer freezes and I get a &quot;runtime error javascript.JSException: Unknown name&quot;. I can&#039;t seem to find out how to fix the problem. Any aid is greatly appreciated! Thanks</description>
		<content:encoded><![CDATA[<p>Hi, I found this post while searching for help with JavaScript. I&#8217;ve recently changed browsers from Safari to Internet Explorer 7. Just recently I seem to have a issue with loading JavaScript. Every time I go on a site that needs Javascript, my computer freezes and I get a &#8220;runtime error javascript.JSException: Unknown name&#8221;. I can&#8217;t seem to find out how to fix the problem. Any aid is greatly appreciated! Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pan</title>
		<link>http://techtracer.com/2007/03/28/convert-date-to-string-and-string-to-date-in-java/comment-page-1/#comment-36379</link>
		<dc:creator>pan</dc:creator>
		<pubDate>Mon, 11 Jan 2010 14:11:01 +0000</pubDate>
		<guid isPermaLink="false">http://techtracer.com/2007/03/28/convert-date-to-string-and-string-to-date-in-java/#comment-36379</guid>
		<description>Default DateStringFormat:  Tue Feb 24 17:39:35 JST 1998
--------------------------------------------------------------------
[date2string]
String aString = new String();
aString = (new Date()).toString();

[string2date]
DateFormat format = new SimpleDateFormat(&quot;E MMM d HH:mm:ss z yyyy&quot;,new Locale(&quot;en&quot;));
Date aDate = new Date();
aDate = (Date)format.parse(aString);</description>
		<content:encoded><![CDATA[<p>Default DateStringFormat:  Tue Feb 24 17:39:35 JST 1998<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
[date2string]<br />
String aString = new String();<br />
aString = (new Date()).toString();</p>
<p>[string2date]<br />
DateFormat format = new SimpleDateFormat(&#8220;E MMM d HH:mm:ss z yyyy&#8221;,new Locale(&#8220;en&#8221;));<br />
Date aDate = new Date();<br />
aDate = (Date)format.parse(aString);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ?????????????</title>
		<link>http://techtracer.com/2007/03/28/convert-date-to-string-and-string-to-date-in-java/comment-page-1/#comment-21521</link>
		<dc:creator>?????????????</dc:creator>
		<pubDate>Tue, 31 Mar 2009 17:45:19 +0000</pubDate>
		<guid isPermaLink="false">http://techtracer.com/2007/03/28/convert-date-to-string-and-string-to-date-in-java/#comment-21521</guid>
		<description>String str = &quot;26/08/1994&quot;;
SimpleDateFormat formatter = new SimpleDateFormat(&quot;dd/MM/yyyy&quot;); //please notice the capital M
Date date = formatter.parse(str);

i chose string to formatter.parse(str) is error</description>
		<content:encoded><![CDATA[<p>String str = &#8220;26/08/1994&#8243;;<br />
SimpleDateFormat formatter = new SimpleDateFormat(&#8220;dd/MM/yyyy&#8221;); //please notice the capital M<br />
Date date = formatter.parse(str);</p>
<p>i chose string to formatter.parse(str) is error</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: iyanne</title>
		<link>http://techtracer.com/2007/03/28/convert-date-to-string-and-string-to-date-in-java/comment-page-1/#comment-6667</link>
		<dc:creator>iyanne</dc:creator>
		<pubDate>Mon, 04 Aug 2008 01:27:59 +0000</pubDate>
		<guid isPermaLink="false">http://techtracer.com/2007/03/28/convert-date-to-string-and-string-to-date-in-java/#comment-6667</guid>
		<description>i have done this but the format that i specify does not work. it always shows the output like this:

Tue Feb 24 17:39:35 JST 1998</description>
		<content:encoded><![CDATA[<p>i have done this but the format that i specify does not work. it always shows the output like this:</p>
<p>Tue Feb 24 17:39:35 JST 1998</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: convert string to date</title>
		<link>http://techtracer.com/2007/03/28/convert-date-to-string-and-string-to-date-in-java/comment-page-1/#comment-5350</link>
		<dc:creator>convert string to date</dc:creator>
		<pubDate>Wed, 09 Jul 2008 04:13:34 +0000</pubDate>
		<guid isPermaLink="false">http://techtracer.com/2007/03/28/convert-date-to-string-and-string-to-date-in-java/#comment-5350</guid>
		<description>[...]  [...]</description>
		<content:encoded><![CDATA[<p>[...]  [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
