vote up 3 vote down star
1

For some reason, lately the *.UDL files on many of my client systems are no longer compatible as they were once saved as ANSI files, which is no longer compatible with the expected UNICODE file format. The end result is an error dialog which states "the file is not a valid compound file".

What is the easiest way to programatically open these files and save as a unicode file? I know I can do this by opening each one in notepad and then saving as the same file but with the "unicode" selected in the encoding section of the save as dialog, but I need to do this in the program to cut down on support calls.

This problem is very easy to duplicate, just create a *.txt file in a directory, rename it to *.UDL, then edit it using the microsoft editor. Then open it in notepad and save as the file as an ANSI encoded file. Try to open the udl from the udl editor and it will tell you its corrupt. then save it (using notepad) as a Unicode encoded file and it will open again properly.

flag

What version of Delphi are we talking about? – Gustavo Carreno Oct 1 '08 at 16:16
Delphi Version 2006 or 2009. – skamradt Oct 1 '08 at 16:35

2 Answers

vote up 3 vote down check

This is very simple to do with my TGpTextFile unit. I'll put together a short sample and post it here.

It should also be very simple with the new Delphi 2009 - are you maybe using it?

EDIT: This his how you can do it using my stuff in pre-2009 Delphis.

var
  strAnsi   : TGpTextFile;
  strUnicode: TGpTextFile;
begin
  strAnsi := TGpTextFile.Create('c:\0\test.udl');
  try
    strAnsi.Reset; // you can also specify non-default 8-bit codepage here
    strUnicode := TGpTextFile.Create('c:\0\test-out.udl');
    try
      strUnicode.Rewrite([cfUnicode]);
      while not strAnsi.Eof do
        strUnicode.Writeln(strAnsi.Readln);
    finally FreeAndNil(strUnicode); end;
  finally FreeAndNil(strAnsi); end;
end;

License: The code fragment above belongs to public domain. Use it anyway you like.

link|flag
vote up 5 vote down

Ok, using delphi 2009, I was able to come up with the following code which appears to work, but is it the proper way of doing this conversion?

var
  sl : tStrings;
  Enc : tEncoding;
begin
  sl := tStringList.Create;
  Enc := TUnicodeEncoding.Create;
  try
    sl.LoadFromFile(fServerDir+'configuration\hdconfig4.udl');
    sl.SaveToFile(fServerDir+'configuration\hdconfig4.udl',Enc.Unicode);
  finally
    enc.Free;
    sl.Free;
  end;
end;
link|flag
No abstract error for tStrings.Create ??? – Gamecat Oct 1 '08 at 16:20
Yep, TStringList should be much better :) – gabr Oct 1 '08 at 16:24
Other than that, the code is just fine (and it works too, I just checked). – gabr Oct 1 '08 at 16:39
You can cause an acess violation with that code, change the first lines to this: s1 := nil; Enc ;= nil; try sl := tStringList.Create; Enc := TUnicodeEncoding.Create; This way if something goes wrong with the TStringList.Create the Enc.Free will not causa an Access Violation. – Fabio Gomes Oct 1 '08 at 17:18
How about LoadFromStream and SaveToStream so that a file is not needed, and it should be faster. – lkessler Dec 14 '08 at 18:00
show 2 more comments

Your Answer

Get an OpenID
or

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