hey all :)
I need advice, I have been looking at several ways to save arrays of records to a file and I was wondering whats the best way.
I need to save several arrays of records ( static & dynamic), and the hard part is that dynamic arrays can have varying lengths,
and most of them will exceed 255 characters. Which means I cant use "file of TRecord" to save the records. And I want to
save all my array records (6-8 of them) to one file.
Now I have looked into TFileStream and writing the individual records out manually. And its ok, but tedious.
And TStringLists, which I can use... but how do I save them out in a non text format? I dont want users to be able to
read (or change) anything in the file. Anyway to change that?
hello LMuadDIb, , I have used the delphi TFileStream, many, many times to save all kinds of data into a file, if you have an array of records, you can for loop through the array and write each record to the TFileStream, but you will need to store the "Length" of the array as a file data segment, so you can read the file later and know how many records to read out of it. . . , if you used NON-FIXED size variables (like a String) then you will need a diferent method to get in in and out of a file data segment, you would record the length of the string (usually an integer value) and then write all of the characters in the string to file. . . . I have made a web site for using the TfileStream for muti-segment data files at --
var
Rec1 : Array [1..10] Of TRec1; // Static array
Rec2 : Array of TRec2; // Dynamic array
implementation
procedure SaveToFile(FileName : String);
var
I : Integer;
FS : TFileStream;
sSize : Integer;
sData : String;
begin
// Open file to write (create)
FS := TFileStream.Create(FileName,fmCreate);
// Save static array - we know numbers of items
For I := 1 To 10 Do
begin
// Write integer
FS.WriteBuffer(Rec1[I].I,SizeOf(Integer));
// Write String - write length first, then write data
sSize := Length(Rec1[I].S);
sData := Rec1[I].S;
FS.WriteBuffer(sSize,SizeOf(Integer));
FS.WriteBuffer(sData[1],sSize);
end;
// Save dynamic array
// Write number of items first
sSize := Length(Rec2);
FS.WriteBuffer(sSize,SizeOf(Integer));
For I := Low(Rec2) To High(Rec2) Do
begin
FS.WriteBuffer(Rec2[I].I,SizeOf(Integer));
FS.WriteBuffer(Rec2[I].B,SizeOf(Boolean));
end;
FS.Free;
end;
procedure LoadFromStream(FileName : String);
var
I : Integer;
FS : TFileStream;
sSize : Integer;
sData : String;
begin
// Open file to read
FS := TFileStream.Create(FileName,fmOpenRead);
// read static array
For I := 1 To 10 Do
Begin
// read integer
FS.ReadBuffer(Rec1[I].I,SizeOf(Integer));
// read dynamic array
FS.ReadBuffer(sSize,SizeOf(Integer));
SetLength(Rec2,sSize);
For I := Low(Rec2) To High(Rec2) Do
begin
FS.ReadBuffer(Rec2[I].I,SizeOf(Integer));
FS.ReadBuffer(Rec2[I].B,SizeOf(Boolean));
end;
Slick812 thanx for that link :)
DarkCore, I didnt even think about xml (which I have never used) but Im gonna check that out thanx
and lmikle, thanx for the code
0
Question has a verified solution.
Are you are experiencing a similar issue? Get a personalized answer when you ask a related question.
ZipGrep is a utility that can list and search zip (.war, .ear, .jar, etc) archives for text patterns, without the need to extract the archive's contents.
One of a set of tools we're offering as a way to say thank you for being a part of the community.
http://www.angelfire.com/hi5/delphizeus/customfiles.html