<?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 for J. O&#039;Conner</title>
	<atom:link href="http://joconner.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://joconner.com</link>
	<description>Creating global software</description>
	<lastBuildDate>Fri, 18 Jun 2010 21:12:07 -0700</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>Comment on Writing UTF-8 CSV Files for Excel by VM</title>
		<link>http://joconner.com/2010/03/csv-utf/comment-page-1/#comment-269</link>
		<dc:creator>VM</dc:creator>
		<pubDate>Fri, 18 Jun 2010 21:12:07 +0000</pubDate>
		<guid isPermaLink="false">http://joconner.com/?p=226#comment-269</guid>
		<description>Hi there,

I am trying to display Thai baht symbol in a CSV file. I write it using java.util.Currency

Currency.getInstance(&quot;THB&quot;).getSymbol(new Locale(&quot;th&quot;, &quot;TH&quot;))

I enabled Thai using Control panel but Excel was showing garbage character where as I am able to see this symbol in notepad. I used your suggestion but it didnt work.

I tried UTF-16LE encoding for setting the bom by encoding but that didnot work either. Any suggestions?? Thanks.

Here is the test case:
======================
import java.io.*;
import org.apache.commons.io.FileUtils;
import com.Ostermiller.util.CSVPrint;
import com.Ostermiller.util.ExcelCSVPrinter;
import java.util.*;

public class ThaiCurrencySymbolTest {

  public static void main(String[] args) throws Exception{
    File f1 = new File(&quot;C:\\Test-Thai-Symbol.csv&quot;);
    CSVPrint csvWriter = ThaiCurrencySymbolTest.getCSVPrintWriter(f1);
    csvWriter.print(Currency.getInstance(&quot;THB&quot;).getSymbol(new Locale(&quot;th&quot;, &quot;TH&quot;)) + &quot;1523.65&quot;);
    csvWriter.flush();
    csvWriter.close();
  }
  
    public static CSVPrint getCSVPrintWriter(File file) throws IOException {
       //OutputStreamWriter buf = new OutputStreamWriter(new FileOutputStream(file),&quot;TIS620&quot;);
       OutputStreamWriter buf = new OutputStreamWriter(new FileOutputStream(file),&quot;UTF-8&quot;);
        CSVPrint csvWriter = new ExcelCSVPrinter(buf);
        csvWriter.setAlwaysQuote(true);
        csvWriter.print(&quot;\uFEFF&quot;);
        return csvWriter;
    }  
}</description>
		<content:encoded><![CDATA[<p>Hi there,</p>
<p>I am trying to display Thai baht symbol in a CSV file. I write it using java.util.Currency</p>
<p>Currency.getInstance(&#8220;THB&#8221;).getSymbol(new Locale(&#8220;th&#8221;, &#8220;TH&#8221;))</p>
<p>I enabled Thai using Control panel but Excel was showing garbage character where as I am able to see this symbol in notepad. I used your suggestion but it didnt work.</p>
<p>I tried UTF-16LE encoding for setting the bom by encoding but that didnot work either. Any suggestions?? Thanks.</p>
<p>Here is the test case:<br />
======================<br />
import java.io.*;<br />
import org.apache.commons.io.FileUtils;<br />
import com.Ostermiller.util.CSVPrint;<br />
import com.Ostermiller.util.ExcelCSVPrinter;<br />
import java.util.*;</p>
<p>public class ThaiCurrencySymbolTest {</p>
<p>  public static void main(String[] args) throws Exception{<br />
    File f1 = new File(&#8220;C:\\Test-Thai-Symbol.csv&#8221;);<br />
    CSVPrint csvWriter = ThaiCurrencySymbolTest.getCSVPrintWriter(f1);<br />
    csvWriter.print(Currency.getInstance(&#8220;THB&#8221;).getSymbol(new Locale(&#8220;th&#8221;, &#8220;TH&#8221;)) + &#8220;1523.65&#8243;);<br />
    csvWriter.flush();<br />
    csvWriter.close();<br />
  }</p>
<p>    public static CSVPrint getCSVPrintWriter(File file) throws IOException {<br />
       //OutputStreamWriter buf = new OutputStreamWriter(new FileOutputStream(file),&#8221;TIS620&#8243;);<br />
       OutputStreamWriter buf = new OutputStreamWriter(new FileOutputStream(file),&#8221;UTF-8&#8243;);<br />
        CSVPrint csvWriter = new ExcelCSVPrinter(buf);<br />
        csvWriter.setAlwaysQuote(true);<br />
        csvWriter.print(&#8220;\uFEFF&#8221;);<br />
        return csvWriter;<br />
    }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Additional Characters in the Joyo Kanji List by Ken Lunde</title>
		<link>http://joconner.com/2010/06/additional-characters-in-the-joyo-kanji-list/comment-page-1/#comment-264</link>
		<dc:creator>Ken Lunde</dc:creator>
		<pubDate>Fri, 11 Jun 2010 12:35:39 +0000</pubDate>
		<guid isPermaLink="false">http://joconner.com/?p=249#comment-264</guid>
		<description>There are many things interesting about this Joyo Kanji revision. One is that it breaks the previous barrier that its components (radicals) are necessarily simplified, meaning that there is now a mixture of simplified and traditional components. Existing kanji remain as-is, but many of the additional 196 kanji have traditional components. This was intentional. Also, four of the kanji are outside JIS X 0208. They are in JIS X 0213. One of them maps to Extension B in Unicode, which is outside the BMP. My mapping table, which indicates their JIS codes, Unicode scalar values, and Adobe-Japan1-6 CIDs, is here: http://lundestudio.com/CJKV2E/joyo-kanji-revision-06072010.txt</description>
		<content:encoded><![CDATA[<p>There are many things interesting about this Joyo Kanji revision. One is that it breaks the previous barrier that its components (radicals) are necessarily simplified, meaning that there is now a mixture of simplified and traditional components. Existing kanji remain as-is, but many of the additional 196 kanji have traditional components. This was intentional. Also, four of the kanji are outside JIS X 0208. They are in JIS X 0213. One of them maps to Extension B in Unicode, which is outside the BMP. My mapping table, which indicates their JIS codes, Unicode scalar values, and Adobe-Japan1-6 CIDs, is here: <a href="http://lundestudio.com/CJKV2E/joyo-kanji-revision-06072010.txt" rel="nofollow">http://lundestudio.com/CJKV2E/joyo-kanji-revision-06072010.txt</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mac OS X and server-ish software by I just order an unmanaged VPS hosting. Where do I start? :Cheap Hosting Reseller Web</title>
		<link>http://joconner.com/2010/06/macosx-tools/comment-page-1/#comment-253</link>
		<dc:creator>I just order an unmanaged VPS hosting. Where do I start? :Cheap Hosting Reseller Web</dc:creator>
		<pubDate>Thu, 03 Jun 2010 19:33:44 +0000</pubDate>
		<guid isPermaLink="false">http://joconner.com/2010/06/macosx-tools/#comment-253</guid>
		<description>[...] J. O&#039;Conner &#187; Mac OS X and server-ish software [...]</description>
		<content:encoded><![CDATA[<p>[...] J. O&#39;Conner &raquo; Mac OS X and server-ish software [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on IUC 34 Submission by Paul Clapham</title>
		<link>http://joconner.com/2010/05/iuc-34-submission/comment-page-1/#comment-252</link>
		<dc:creator>Paul Clapham</dc:creator>
		<pubDate>Thu, 27 May 2010 15:47:22 +0000</pubDate>
		<guid isPermaLink="false">http://joconner.com/?p=235#comment-252</guid>
		<description>Ah yes, an oldie now but a goodie. I have lost track of the number of times I have posted a link to your original article on Java forums in response to people with encoding problems.</description>
		<content:encoded><![CDATA[<p>Ah yes, an oldie now but a goodie. I have lost track of the number of times I have posted a link to your original article on Java forums in response to people with encoding problems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Writing UTF-8 CSV Files for Excel by Ben</title>
		<link>http://joconner.com/2010/03/csv-utf/comment-page-1/#comment-210</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Wed, 24 Mar 2010 17:29:30 +0000</pubDate>
		<guid isPermaLink="false">http://joconner.com/?p=226#comment-210</guid>
		<description>pardon the obvious pun but that&#039;s the BOM</description>
		<content:encoded><![CDATA[<p>pardon the obvious pun but that&#8217;s the BOM</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Is the Swing Application Framework necessary now? by Per Lundholm</title>
		<link>http://joconner.com/2009/03/is-saf-necessary/comment-page-1/#comment-208</link>
		<dc:creator>Per Lundholm</dc:creator>
		<pubDate>Sun, 24 Jan 2010 15:29:17 +0000</pubDate>
		<guid isPermaLink="false">http://joconner.com/?p=172#comment-208</guid>
		<description>Agreed. But you forgot to mention that JavaFX is so much more fun! :-) 

Waiting eagerly for 1.3...</description>
		<content:encoded><![CDATA[<p>Agreed. But you forgot to mention that JavaFX is so much more fun! <img src='http://joconner.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  </p>
<p>Waiting eagerly for 1.3&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Speculations on Google Chrome OS by Corn</title>
		<link>http://joconner.com/2009/07/speculations-on-google-chrome-os/comment-page-1/#comment-207</link>
		<dc:creator>Corn</dc:creator>
		<pubDate>Mon, 04 Jan 2010 13:09:54 +0000</pubDate>
		<guid isPermaLink="false">http://joconner.com/2009/07/speculations-on-google-chrome-os/#comment-207</guid>
		<description>PC World released a list of the top 10 Google Chrome Add-ons. http://www.pcworld.com/article/185744/top_10_chrome_browser_add_ons.html</description>
		<content:encoded><![CDATA[<p>PC World released a list of the top 10 Google Chrome Add-ons. <a href="http://www.pcworld.com/article/185744/top_10_chrome_browser_add_ons.html" rel="nofollow">http://www.pcworld.com/article/185744/top_10_chrome_browser_add_ons.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Will Oracle support NetBeans? by xxz</title>
		<link>http://joconner.com/2009/04/will-oracle-support-netbeans/comment-page-1/#comment-205</link>
		<dc:creator>xxz</dc:creator>
		<pubDate>Tue, 22 Dec 2009 01:28:39 +0000</pubDate>
		<guid isPermaLink="false">http://joconner.com/netbeans/will-oracle-support-netbeans#comment-205</guid>
		<description>Well, but it&#039;s known that the ultimate thing that determins decisions is the ego of bosses and marketing, company-wide Public Relations. So, an assumption that a technically sound decision is preferred to a stuped, shoot in my leg style, decision, is just plain wrong in a corporate world. 

My guess: the result is probably like it would be, if a coin were flipped.</description>
		<content:encoded><![CDATA[<p>Well, but it&#8217;s known that the ultimate thing that determins decisions is the ego of bosses and marketing, company-wide Public Relations. So, an assumption that a technically sound decision is preferred to a stuped, shoot in my leg style, decision, is just plain wrong in a corporate world. </p>
<p>My guess: the result is probably like it would be, if a coin were flipped.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on NetBeans finally imports my Eclipse projects by bob</title>
		<link>http://joconner.com/2009/11/netbeans-finally-imports-my-eclipse-projects/comment-page-1/#comment-199</link>
		<dc:creator>bob</dc:creator>
		<pubDate>Tue, 24 Nov 2009 22:03:38 +0000</pubDate>
		<guid isPermaLink="false">http://joconner.com/2009/11/netbeans-finally-imports-my-eclipse-projects/#comment-199</guid>
		<description>Great to hear! I wanted to use NetBeans for a totally different reason! -- the UML plugin! since I could not import Eclipse project into NetBeans.
I tried to set up projects directly from svn into NetBeans! Guess what? it did! but left out the main projects! only those maven, ant, etc. sub-projects!
Still a failure!
Your success give me hope!
Now, is the imported project sharable with Eclipse, or independent, or in-situ by destroying the old eclipse project? 
Does it preserve the svn connections?
Thanks</description>
		<content:encoded><![CDATA[<p>Great to hear! I wanted to use NetBeans for a totally different reason! &#8212; the UML plugin! since I could not import Eclipse project into NetBeans.<br />
I tried to set up projects directly from svn into NetBeans! Guess what? it did! but left out the main projects! only those maven, ant, etc. sub-projects!<br />
Still a failure!<br />
Your success give me hope!<br />
Now, is the imported project sharable with Eclipse, or independent, or in-situ by destroying the old eclipse project?<br />
Does it preserve the svn connections?<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on JavaScript file encoding by Raphael Kallensee (rkallensee) 's status on Tuesday, 17-Nov-09 20:33:33 UTC - Identi.ca</title>
		<link>http://joconner.com/2008/09/javascript-file-encoding/comment-page-1/#comment-197</link>
		<dc:creator>Raphael Kallensee (rkallensee) 's status on Tuesday, 17-Nov-09 20:33:33 UTC - Identi.ca</dc:creator>
		<pubDate>Tue, 17 Nov 2009 20:33:40 +0000</pubDate>
		<guid isPermaLink="false">http://joconner.com/?p=19#comment-197</guid>
		<description>[...]  http://joconner.com/2008/09/javascript-file-encoding/        a few seconds ago  from  Gwibber [...]</description>
		<content:encoded><![CDATA[<p>[...]  <a href="http://joconner.com/2008/09/javascript-file-encoding/" rel="nofollow">http://joconner.com/2008/09/javascript-file-encoding/</a>        a few seconds ago  from  Gwibber [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
