Is there a way in Delphi to read streams ,line by line?
Is there a way to set the encoding of the stream?
I know of
TEncoding.getEncodingPage(1250);
How to get it from stream?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I think you’re looking for
TStreamReader. You set the encoding in the constructor and then callReadLine.In terms of how to get the encoding from the stream, that depends very much on what is in the stream, doesn’t it?