I need your help. Please help me.

I have Delphi 2010

I try to idHTTP.Get a file with Unicode text (Russian) from site into MemoryStream on English version of Windows 7.

Then I load this MemoryStream with Unicode text into, for example, Memo.

If I set the Russian language as "Language for non-Unicode programs" in Control Panel the text appear properly in Memo. But if I set Enlish - I get wrong characters (*$^#~!@).

How can I load Russian text in Unicode with idHTTP.Get from site and show it properly in any Windows (Chinese, English etc.)???

Thank you for help!!!

link|improve this question

0% accept rate
In addition to writing sentences to describe what you've done, please copy and paste your code. Also, use the "contact us" link at the bottom of this page to ask an administrator to merge your multiple accounts into one. – Rob Kennedy Jun 7 '11 at 19:55
feedback

3 Answers

I suggest updating to a recent Delphi version that is Unicode enabled.

Update: It looks like the memorystream actually contains AnsiText in a specific code page instead of real Unicode text. You can declare an appropriate AnsiString variable with that codepage, load the text into that variable and then load the variable into the memo.

It is hard to tell more without seeing the real data.

link|improve this answer
I have Delphi 2010 – Michael Jun 7 '11 at 17:09
@Michael: D2010 does support Unicode so there should be no problems. – Smasher Jun 7 '11 at 17:15
But I have problems, can it be wrong if I did not set character set/code page in idHTTP? – Michael Jun 7 '11 at 17:50
You do not set a charset when you send a request to the server (unless you are sending text to the server). The server tells you the charset encoding of the text that it sends to you in a response. The latest version of Indy 10 decodes the text using that charset, if it is detected. If the wrong charset is used to decode the text, that can cause problems. – Remy Lebeau Jun 14 '11 at 6:51
feedback

TMemo expects Unicode (UTF-16 encoded) text. If you download the text using the version of TIdHTTP.Get() that fills a TStream, then you are downloading the raw (usually Ansi encoded) text, and then are responsible for manually decoding that to Unicode before then assigning that to the TMemo.

Assuming the webserver is specifying a correct charset for the text in the response headers, then use the version of TIdHTTP.Get() that returns a String instead. TIdHTTP will detect the charset and decode the raw data into Unicode for you, eg:

Memo1.Text := IdHTTP1.Get('http://addr_here');
link|improve this answer
feedback
  • Update to D2009 or higher
  • Use components that support unicode (I remember TMS offers some components)
  • Set the character set / code page correctly for the language you are using
link|improve this answer
I have Delphi 2010. I am using Memory Stream in idHttp, so idHTTP wil not change characters into other code. I did not set character set / code page. I will try it. – Michael Jun 7 '11 at 17:29
@Michael: because you are downloading into a TMemoryStream, you are receiving the raw encoded data. You are then responsible for decoding the data yourself before you can display it properly. Better to let Indy do the decoding for you. – Remy Lebeau Jun 14 '11 at 6:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.