<?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: How to export data to CSV file &#8211; Java</title>
	<atom:link href="http://www.mkyong.com/java/how-to-export-data-to-csv-file-java/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mkyong.com/java/how-to-export-data-to-csv-file-java/</link>
	<description>Thoughts on Java, Maven, Hibernate, Spring , Ajax web development</description>
	<lastBuildDate>Sun, 14 Mar 2010 21:03:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: mkyong</title>
		<link>http://www.mkyong.com/java/how-to-export-data-to-csv-file-java/comment-page-1/#comment-5267</link>
		<dc:creator>mkyong</dc:creator>
		<pubDate>Wed, 20 Jan 2010 13:13:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.mkyong.com/?p=172#comment-5267</guid>
		<description>er...may i know why you want to embed an image in CSV file?</description>
		<content:encoded><![CDATA[<p>er&#8230;may i know why you want to embed an image in CSV file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prateek</title>
		<link>http://www.mkyong.com/java/how-to-export-data-to-csv-file-java/comment-page-1/#comment-5250</link>
		<dc:creator>Prateek</dc:creator>
		<pubDate>Wed, 20 Jan 2010 05:55:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.mkyong.com/?p=172#comment-5250</guid>
		<description>How can we embed an image in the CSV file??? Please help</description>
		<content:encoded><![CDATA[<p>How can we embed an image in the CSV file??? Please help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mkyong</title>
		<link>http://www.mkyong.com/java/how-to-export-data-to-csv-file-java/comment-page-1/#comment-3196</link>
		<dc:creator>mkyong</dc:creator>
		<pubDate>Sat, 31 Oct 2009 02:27:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.mkyong.com/?p=172#comment-3196</guid>
		<description>would you mind to share your code here? or email me?</description>
		<content:encoded><![CDATA[<p>would you mind to share your code here? or email me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ronnie</title>
		<link>http://www.mkyong.com/java/how-to-export-data-to-csv-file-java/comment-page-1/#comment-3190</link>
		<dc:creator>Ronnie</dc:creator>
		<pubDate>Fri, 30 Oct 2009 09:16:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.mkyong.com/?p=172#comment-3190</guid>
		<description>Hi mkyong....
Srry it was simple...
I did cast it to string and use it :)
But however i could not append the time stamp(date + time) value. The timestamp value format is of YYYY:MM:DD HRS:MIN .....
But when appending it is only giving HRS:MIN value i.e the time value but the date value is completely lost :(</description>
		<content:encoded><![CDATA[<p>Hi mkyong&#8230;.<br />
Srry it was simple&#8230;<br />
I did cast it to string and use it <img src='http://www.mkyong.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
But however i could not append the time stamp(date + time) value. The timestamp value format is of YYYY:MM:DD HRS:MIN &#8230;..<br />
But when appending it is only giving HRS:MIN value i.e the time value but the date value is completely lost <img src='http://www.mkyong.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ronnie</title>
		<link>http://www.mkyong.com/java/how-to-export-data-to-csv-file-java/comment-page-1/#comment-3189</link>
		<dc:creator>Ronnie</dc:creator>
		<pubDate>Fri, 30 Oct 2009 07:30:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.mkyong.com/?p=172#comment-3189</guid>
		<description>What if i want to append double and integer values to the same files?
file writer append doesnt support double or int values....</description>
		<content:encoded><![CDATA[<p>What if i want to append double and integer values to the same files?<br />
file writer append doesnt support double or int values&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mkyong</title>
		<link>http://www.mkyong.com/java/how-to-export-data-to-csv-file-java/comment-page-1/#comment-1644</link>
		<dc:creator>mkyong</dc:creator>
		<pubDate>Thu, 30 Apr 2009 23:25:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.mkyong.com/?p=172#comment-1644</guid>
		<description>hi no name, 

    Ya, i agreed with you, my function above is quite simple and it is not enough to cover all CVS functionality. However what i want to bring out is, we can generate the CVS file by simple output it as text file.
   If we have a comma(,) , we need to use double quote (&quot;) to enclose it. 

For example

   &quot;No , name&quot;, 23 

   Thanks for bringing this to my attention, :)

P.S Please refer to this link for CVS detail

http://www.creativyst.com/Doc/Articles/CSV/CSV01.htm</description>
		<content:encoded><![CDATA[<p>hi no name, </p>
<p>    Ya, i agreed with you, my function above is quite simple and it is not enough to cover all CVS functionality. However what i want to bring out is, we can generate the CVS file by simple output it as text file.<br />
   If we have a comma(,) , we need to use double quote (&#8220;) to enclose it. </p>
<p>For example</p>
<p>   &#8220;No , name&#8221;, 23 </p>
<p>   Thanks for bringing this to my attention, <img src='http://www.mkyong.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>P.S Please refer to this link for CVS detail</p>
<p><a href="http://www.creativyst.com/Doc/Articles/CSV/CSV01.htm" rel="nofollow">http://www.creativyst.com/Doc/Articles/CSV/CSV01.htm</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: No name</title>
		<link>http://www.mkyong.com/java/how-to-export-data-to-csv-file-java/comment-page-1/#comment-1639</link>
		<dc:creator>No name</dc:creator>
		<pubDate>Thu, 30 Apr 2009 14:22:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.mkyong.com/?p=172#comment-1639</guid>
		<description>&gt;&gt;&gt; Simple right? Writing / export data to CSV file is exactly same with writing data into a normal text file.

Wrong.  What if you have &quot;,&quot; in your, say, Display Name field?</description>
		<content:encoded><![CDATA[<p>&gt;&gt;&gt; Simple right? Writing / export data to CSV file is exactly same with writing data into a normal text file.</p>
<p>Wrong.  What if you have &#8220;,&#8221; in your, say, Display Name field?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
