Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
General
»
[SOLVED] TMemoryStream.ReadAnsiString Error
Free Pascal
Website
Downloads
Wiki
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Bugtracker
IRC channel
Latest SVN
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Error installation lazaru...
by
young_nandy
[
Today
at 03:22:22 am]
Help with task using arra...
by
lucamar
[
Today
at 02:57:49 am]
LAMW: Linux crash in emul...
by
iru
[
Today
at 02:39:50 am]
cdecl - conventions instr...
by
AlanTheBeast
[
Today
at 02:05:38 am]
Executing build commands ...
by
ASBzone
[
Today
at 01:49:01 am]
LAMW: jMsSqlJDBCConnectio...
by
jmpessoa
[
Today
at 01:29:03 am]
Using WebSockets with Laz...
by
PierceNg
[
Today
at 01:21:06 am]
problem executting tproce...
by
Martin_fr
[
Today
at 01:11:16 am]
Are there any existing vn...
by
willbprog9933
[March 02, 2021, 11:19:57 pm]
Copy the contents of a po...
by
jamie
[March 02, 2021, 10:46:41 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [SOLVED] TMemoryStream.ReadAnsiString Error (Read 554 times)
Handoko
Hero Member
Posts: 4070
My goal: build my own game engine using Lazarus
[SOLVED] TMemoryStream.ReadAnsiString Error
«
on:
July 14, 2020, 08:11:45 pm »
Did I do it wrong?
Why the first attempt to convert TMemoryStream's data to string is okay but on the second attempt I got an
EReadError
exception '
Stream read error
' message.
Code: Pascal
[Select]
[+]
[-]
unit
Unit1
;
{$mode objfpc}{$H+}
interface
uses
Classes
,
SysUtils
,
Forms
,
Controls
,
Dialogs
,
StdCtrls
;
type
{ TForm1 }
TForm1
=
class
(
TForm
)
Button1
:
TButton
;
procedure
Button1Click
(
Sender
:
TObject
)
;
end
;
var
Form1
:
TForm1
;
implementation
{$R *.lfm}
{ TForm1 }
procedure
TForm1
.
Button1Click
(
Sender
:
TObject
)
;
const
Data
=
'Testing'
;
var
aMemoryStream
:
TMemoryStream
;
aString
:
string
;
i
:
Integer
;
begin
aMemoryStream
:
=
TMemoryStream
.
Create
;
for
i
:
=
1
to
Data
.
Length
do
aMemoryStream
.
WriteByte
(
Ord
(
Data
[
i
]
)
)
;
// First read attempt - OK
aString
:
=
''
;
aMemoryStream
.
Position
:
=
0
;
for
i
:
=
1
to
aMemoryStream
.
Size
do
aString
:
=
aString
+
Chr
(
aMemoryStream
.
ReadByte
)
;
ShowMessage
(
aString
)
;
// Second read attempt - FAILED
aMemoryStream
.
Position
:
=
0
;
aString
:
=
aMemoryStream
.
ReadAnsiString
;
ShowMessage
(
aString
)
;
aMemoryStream
.
Free
end
;
end
.
Tested on Lazarus 2.0.10 Linux 64-bit.
«
Last Edit: July 14, 2020, 08:33:03 pm by Handoko
»
Logged
cai
New Member
Posts: 17
Re: TMemoryStream.ReadAnsiString Error
«
Reply #1 on:
July 14, 2020, 08:22:47 pm »
I think to call ReadAnsiString, you need to call WriteAnsiString First.
if you look in ReadAnsiString source code, you will see it need to read size first, there is no correct size in you stream cause you just WriteByte
Logged
howardpc
Hero Member
Posts: 3644
Re: TMemoryStream.ReadAnsiString Error
«
Reply #2 on:
July 14, 2020, 08:26:31 pm »
Try this:
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
Button1Click
(
Sender
:
TObject
)
;
const
Data
=
'Testing'
;
var
aMemoryStream
:
TMemoryStream
;
aString
:
string
;
i
:
Integer
;
begin
aMemoryStream
:
=
TMemoryStream
.
Create
;
for
i
:
=
1
to
Data
.
Length
do
aMemoryStream
.
WriteByte
(
Ord
(
Data
[
i
]
)
)
;
aString
:
=
''
;
aMemoryStream
.
Position
:
=
0
;
for
i
:
=
1
to
aMemoryStream
.
Size
do
aString
:
=
aString
+
Chr
(
aMemoryStream
.
ReadByte
)
;
ShowMessage
(
aString
)
;
aMemoryStream
.
Clear
;
aMemoryStream
.
WriteAnsiString
(
Data
)
;
aMemoryStream
.
Position
:
=
0
;
aString
:
=
aMemoryStream
.
ReadAnsiString
;
ShowMessage
(
aString
)
;
aMemoryStream
.
Free
end
;
Logged
Handoko
Hero Member
Posts: 4070
My goal: build my own game engine using Lazarus
Re: TMemoryStream.ReadAnsiString Error
«
Reply #3 on:
July 14, 2020, 08:32:42 pm »
cai, you're right. And thanks howardpc. Now, I have better understanding about streams.
I was writing code to read data from the web and I need to do some processings before showing it on the screen. I know how to do it now.
Logged
TRon
Hero Member
Posts: 536
Re: [SOLVED] TMemoryStream.ReadAnsiString Error
«
Reply #4 on:
July 14, 2020, 08:49:01 pm »
@Handoko:
Alternatively, and probably depending on your needs/requirements, you could perhaps also make use of TStringStream
https://www.freepascal.org/docs-html/rtl/classes/tstringstream.html
It is a descendant of TMemoryStream so you would also still be able to manipulate the memory.
Logged
Handoko
Hero Member
Posts: 4070
My goal: build my own game engine using Lazarus
Re: [SOLVED] TMemoryStream.ReadAnsiString Error
«
Reply #5 on:
July 15, 2020, 04:51:54 am »
Yes, you're right. TStringStream has DataString property, which make it easier to use.
Thank you for the suggestion.
Logged
PascalDragon
Hero Member
Posts: 2751
Compiler Developer
Re: TMemoryStream.ReadAnsiString Error
«
Reply #6 on:
July 15, 2020, 09:47:50 am »
Quote from: cai on July 14, 2020, 08:22:47 pm
I think to call ReadAnsiString, you need to call WriteAnsiString First.
Correct.
ReadAnsiString
expects a specific format inside the stream, namely the length followed by the string data and that is created by
WriteAnsiString
. To read plain string data you need to use the other
Read
methods and manually preallocate enough space.
Logged
rvk
Hero Member
Posts: 4465
Re: [SOLVED] TMemoryStream.ReadAnsiString Error
«
Reply #7 on:
July 15, 2020, 02:56:27 pm »
Yes, if you have a choice, TStringStream is easiest.
If you don't have a choice you can also access TMemoryStream.Memory directly.
Code: Pascal
[Select]
[+]
[-]
function
MemoryStreamToString
(
M
:
TMemoryStream
)
:
string
;
begin
SetString
(
Result
,
PChar
(
M
.
Memory
)
,
M
.
Size
div
SizeOf
(
Char
)
)
;
end
;
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
General
»
[SOLVED] TMemoryStream.ReadAnsiString Error
TinyPortal
© 2005-2018