Hi Team :-),
I have table with Hebrew text and when I download the csv file with this table instead of text I see "??????????".
How can I config the app so it will recognize the correct text? In my understanding the correct encoding has to be configured like UTF8, but I do not know where I could configure it.
Thanks
Hi Alexander,
I've the same issue with portuguese text. I think that you could solve it making a small adjustment in DataExtractor Extension.
In TableManager Class, Extract Method change line 120 from:
//Write file line
gZipStream.Write(Encoding.ASCII.GetBytes(fileLine), 0, fileLine.Length);
to
//gZipStream.Write(Encoding.ASCII.GetBytes(fileLine), 0, fileLine.Length);
byte[] inputBytes = Encoding.UTF8.GetBytes(fileLine);
gZipStream.Write(inputBytes, 0, inputBytes.Length);
Hope this helps,
Marco
Hi Marco,
It Worked !!! :-)
Thank you