<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: convert CSV to UTF BOM in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/convert-CSV-to-UTF-BOM/m-p/2320624#M90746</link>
    <description>&lt;P&gt;Hello Moe....!&lt;/P&gt;
&lt;P&gt;My original CSV files are encoded with UTF8-BOM, this is so Excel can recognize the Unicode characters (If its just encoded with UTF8 then Excel does not recognize the Unicode characters).&lt;/P&gt;
&lt;P&gt;My issue is that with a UTF8 encoded CSV file, when you click save in Excel it gives you a popup option to keep the original formatting. However if the file is UTF8-BOM encoded then clicking the save is instant and there is no option to keep the formatting. The CSV file then has it commas replaced with tabs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank You &lt;A href="https://thoptv.fun/" target="_self" rel="nofollow noopener noreferrer"&gt;THOP TV&lt;/A&gt; &amp;amp; &lt;A href="https://onmoviesapp.com/" target="_self" rel="nofollow noopener noreferrer"&gt;ONMOVIES&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 07 Jul 2019 13:55:48 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-07-07T13:55:48Z</dc:date>
    <item>
      <title>convert CSV to UTF BOM</title>
      <link>https://community.qlik.com/t5/Talend-Studio/convert-CSV-to-UTF-BOM/m-p/2320622#M90744</link>
      <description>&lt;P&gt;I'm trying to convert my generated text file to UTF with BOM, I tried in custom "UTF-BOM" and "UTF-8-BOM" but it is throwing unsupported encoding error... I tried this java code but it is writing empty file:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;String filename = "/myTXTfilepath/file.txt";&lt;BR /&gt;String content="";&lt;BR /&gt;byte[] bytes = content.getBytes();&lt;BR /&gt;&lt;BR /&gt;try (OutputStream out = new FileOutputStream(filename)) {&lt;BR /&gt;&lt;BR /&gt;// write a byte sequence&lt;BR /&gt;out.write(0xEF);&lt;BR /&gt;out.write(0xBB);&lt;BR /&gt;out.write(0xBF);&lt;BR /&gt;&lt;BR /&gt;out.close();&lt;BR /&gt;} catch (IOException e) {&lt;BR /&gt;e.printStackTrace();&lt;BR /&gt;}&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2019 10:58:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/convert-CSV-to-UTF-BOM/m-p/2320622#M90744</guid>
      <dc:creator>Moe1</dc:creator>
      <dc:date>2019-07-05T10:58:08Z</dc:date>
    </item>
    <item>
      <title>Re: convert CSV to UTF BOM</title>
      <link>https://community.qlik.com/t5/Talend-Studio/convert-CSV-to-UTF-BOM/m-p/2320623#M90745</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LLuBAAW"&gt;@Moe&lt;/A&gt;&amp;nbsp;,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Instead of out.write can you use out.print() for UTF-8 BOM.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;or instead of OutputStream please use PrintWriter class.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;PrintWriter out = new PrintWriter(new File(filePath), "UTF-8");&lt;BR /&gt;out.write(csvFileContent);&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks and Regards,&lt;/P&gt; 
&lt;P&gt;Subhadip&lt;/P&gt;</description>
      <pubDate>Fri, 05 Jul 2019 16:46:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/convert-CSV-to-UTF-BOM/m-p/2320623#M90745</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-05T16:46:03Z</dc:date>
    </item>
    <item>
      <title>Re: convert CSV to UTF BOM</title>
      <link>https://community.qlik.com/t5/Talend-Studio/convert-CSV-to-UTF-BOM/m-p/2320624#M90746</link>
      <description>&lt;P&gt;Hello Moe....!&lt;/P&gt;
&lt;P&gt;My original CSV files are encoded with UTF8-BOM, this is so Excel can recognize the Unicode characters (If its just encoded with UTF8 then Excel does not recognize the Unicode characters).&lt;/P&gt;
&lt;P&gt;My issue is that with a UTF8 encoded CSV file, when you click save in Excel it gives you a popup option to keep the original formatting. However if the file is UTF8-BOM encoded then clicking the save is instant and there is no option to keep the formatting. The CSV file then has it commas replaced with tabs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank You &lt;A href="https://thoptv.fun/" target="_self" rel="nofollow noopener noreferrer"&gt;THOP TV&lt;/A&gt; &amp;amp; &lt;A href="https://onmoviesapp.com/" target="_self" rel="nofollow noopener noreferrer"&gt;ONMOVIES&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 07 Jul 2019 13:55:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/convert-CSV-to-UTF-BOM/m-p/2320624#M90746</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-07T13:55:48Z</dc:date>
    </item>
    <item>
      <title>Re: convert CSV to UTF BOM</title>
      <link>https://community.qlik.com/t5/Talend-Studio/convert-CSV-to-UTF-BOM/m-p/2320625#M90747</link>
      <description>&lt;P&gt;Thanks, I tried PrintWriter, FileWriter with BufferedReader but of them created a file with UTF8 encoding and not utf8 with BOM&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2019 14:56:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/convert-CSV-to-UTF-BOM/m-p/2320625#M90747</guid>
      <dc:creator>Moe1</dc:creator>
      <dc:date>2019-07-08T14:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: convert CSV to UTF BOM</title>
      <link>https://community.qlik.com/t5/Talend-Studio/convert-CSV-to-UTF-BOM/m-p/2320626#M90748</link>
      <description>&lt;P&gt;This method will work.....&lt;/P&gt; 
&lt;P&gt;&lt;A href="https://community.qlik.com/s/feed/0D53p00007vD19lCAC" target="_blank"&gt;https://community.talend.com/t5/Design-and-Development/Convert-a-CSV-UTF-8-to-UTF-8-BOM/m-p/149620?author_id=1098&amp;amp;collapse_discussion=true&amp;amp;filter=authorId&amp;amp;q=UTF%20BOM&amp;amp;search_type=thread&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2019 15:44:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/convert-CSV-to-UTF-BOM/m-p/2320626#M90748</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-07-08T15:44:34Z</dc:date>
    </item>
    <item>
      <title>Re: convert CSV to UTF BOM</title>
      <link>https://community.qlik.com/t5/Talend-Studio/convert-CSV-to-UTF-BOM/m-p/2320627#M90749</link>
      <description>&lt;P&gt;Awesome it usefull to make strong Article. Thank you writer.&lt;/P&gt;&lt;P&gt;- &lt;A title="Nthsports.com" href="https://nthsports.com/" target="_self" rel="nofollow noopener noreferrer"&gt;Nth Sports App&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2020 05:33:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/convert-CSV-to-UTF-BOM/m-p/2320627#M90749</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-10T05:33:13Z</dc:date>
    </item>
  </channel>
</rss>

