vote up 0 vote down star

I written a program with Delphi 7 which searches *.srt files on a hard drive. This program lists the path and name of these files in a memo. Now I need convert these files from ANSI to UTF-8, but I haven't succeeded.

Please help me...

flag
ANSI isn't really a proper character encoding name; Windows generally uses "ANSI" to mean Windows-1252. stackoverflow.com/questions/701882 – Miles Apr 2 at 21:12
1  
@Miles: Windows use "ANSI" to means whatever your locale is. It would be SJIS for japanese windows user; GB2312 for S-Chinese windows user, etc... – J-16 SDiZ Jul 4 at 5:29

5 Answers

vote up 0 vote down

Take a look at GpTextStream which looks like it works with Delphi 7. It has the ability to read/write unicode files in older versions of Delphi (although does work with Delphi 2009) and should help with your conversion.

link|flag
vote up 1 vote down

The Utf8Encode function takes a WideString string as parameter and returns a Utf-8 string.

link|flag
vote up 0 vote down
var
  Latin1Encoding: TEncoding;
begin
  Latin1Encoding := TEncoding.GetEncoding(28591);
  try
       MyTStringList.SaveToFile('some file.txt', Latin1Encoding);
  finally
      Latin1Encoding.Free;
  end;
end;
link|flag
2  
This is Delphi 2009. – Ralph Rickenbach Jul 3 at 19:27
vote up 0 vote down

Check the code page for the source encoding. I'm not a Delphi guy but this link looks promising.

http://www.jpgriffiths.com/tutorial/api\multibytetowidechar.html

Here is some c# specific info but still helpful. http://weblogs.asp.net/ahoffman/archive/2004/01/19/60094.aspx

related info http://en.wikipedia.org/wiki/ASCII http://en.wikipedia.org/wiki/UTF-8 http://www.joelonsoftware.com/articles/Unicode.html

link|flag
vote up 0 vote down

Did you mean ASCII?

ASCII is backwards compatible with UTF-8. http://en.wikipedia.org/wiki/UTF-8

link|flag
No, I mean ANSI. Open a txt file.(notepad) File----> save as -------> encoding ------> ANSI or UTF-8 or... ----> SAVE I hope, this helps to see my aim... – Yilmaz Ekici Apr 2 at 19:15

Your Answer

Get an OpenID
or

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