![]() |
Re: $0 in stream and loading as text
@Sir Rufo, next time I'll be more precise :)
Data producer is unknown, I just know it is some resource compiler + compiler + linker (mean file is executable). Data is some data, it can be in any format, it can be a string too. I wrote simple function to check if stream can be Unicode or ANSII:
Delphi-Quellcode:
Another one, I badly loaded encoded text (LoadFromStream - it was raw data, stupilo :oops:), Append(DataString) is required.
function GetEncoding(AStream: TStream): TEncoding;
var V: Byte; begin Result := TEncoding.ANSI; if AStream.Size > 1 then begin AStream.Position := 1; AStream.ReadBuffer(V, 1); if V = 0 then Result := TEncoding.Unicode ; end; end; As @brechi told, pointer terminate code is zero in TStrings, so this is main problem. I don't know how jump over it :( Also I wrote poor (because very slow) procedure to replace bytes in stream, if someone need it:
Delphi-Quellcode:
procedure ReplaceBytes(AIn: TStream; const AFrom, ATo: Byte; AOut: TStream);
var I: Cardinal; V: Byte; begin for I := 1 to AIn.Size do begin AIn.ReadBuffer(V, 1); if V = AFrom then AOut.WriteBuffer(ATo, 1) else AOut.WriteBuffer(V, 1) ; end; end; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 23:13 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz