![]() |
Delphi-Version: XE5
$0 in stream and loading as text
Liste der Anhänge anzeigen (Anzahl: 1)
I have sample data in stream like shown on attached image. You see many $0 inside. I want to load this stream to TStrings:
Delphi-Quellcode:
Text.LoadFromStream(Data);
Yeah, loading, but only to first $0. How to load whole data of this stream as text? I tried also use additional string stream with encoding as Ansi or Unicode on create and load to strings from this encoded stream. The same result. |
AW: $0 in stream and loading as text
Load as binary (TFileStream) and then cast as string. But I am afraid it won't make you happy.
|
AW: $0 in stream and loading as text
Which first $0 are you talking about?
The stream contains data with a MultiByte-Character-Set. When talking about $0 is this the value of the char or the value of the byte (half part of a char)? Please be more precise in your questions |
AW: $0 in stream and loading as text
Zitat:
|
Re: AW: $0 in stream and loading as text
Zitat:
When I save data and load in notepad, I see characters separated with space. I want to decode whole stream as text, even if $0 bytes inside. TStringStream.Create('', TEncoding.Unicode) TStringStream.LoadFromStream(Source); TStrings.LoadFromStream(TStringStream); // result = samplestream('D''d') |
AW: Re: AW: $0 in stream and loading as text
Zitat:
So maybe yor compiler or compter is broken ... sorry to tell that |
Re: AW: Re: AW: $0 in stream and loading as text
Zitat:
Anyway don't working annd changing encoding don't want to help :? |
AW: Re: AW: Re: AW: $0 in stream and loading as text
Zitat:
It is near to impossible to help if you tell us about something like. The source did not contain a whole text but a bunch of strings in a kind of structure. You have to work on that structure and read the data following the structure rules. A good starting point is to look at the producer of the data and get some information. We do not have (because you did not tell us - another precise mark) any clue about the producer. |
AW: $0 in stream and loading as text
You have to write your own component to visualize the text.
Internal PAnsiChar/PWideChar is used and a #0 is the end of the text. So if you use
Code:
only the "test1" will be shown.
Memo1.Lines.Text := 'test1'#0'test2'#0;
If you dont want to save your data, then you can load the file into a TMemoryStream (or a string) and replace the #0 with another character.
Code:
var
s: String; fm: TFileStream; fm := TFileStream.Create; fm.LoadFromFile('sadasd', fmOpenRead); setLength(s, fm,size); fm.Read(s[1], Length(s)); s := StringReplacte(s, #0, #1, [rfReplaceAll]); memo1.lines.text := s; etc. |
AW: $0 in stream and loading as text
Zitat:
If one did it this way and there is only one real unicode character inside, one would get really strange results... Even if there is no byte order mark this code works perfectly for me:
Delphi-Quellcode:
So it would be better, if you would attach a working sample code with an example file...
var
test: TStringStream; begin test := TStringStream.Create('', TEncoding.Unicode); try test.LoadFromFile('c:\temp\a.txt'); ShowMessage(test.DataString); finally test.Free; end; end; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 11:35 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