在Dephi中使用TStream读写数据的技巧(Techniques for using TStream to read and write data in Dephi).docVIP
- 10
- 0
- 约1.66万字
- 约 27页
- 2017-07-25 发布于河南
- 举报
在Dephi中使用TStream读写数据的技巧(Techniques for using TStream to read and write data in Dephi)
在Dephi中使用TStream读写数据的技巧(Techniques for using TStream to read and write data in Dephi)
Techniques for using TStream to read and write data in Dephi
In Dephi, an abstract data type, TStream, is provided to support the operation of convective data. These data usually come from files, databases, memory objects, OLE objects, and so on. TStream provides a unified, concise way to read and write data. In general, we dont need to directly use the TStream class, and the read and write of streaming data is encapsulated in the VCL control method. However, if these methods can not meet our requirements, you need to manually control the data read and write.
One, TStream commonly used methods and attributes:
1., function, Read (VaR Buffer; Count: Longint): Longint; virtual; abstract
2., function, Write (const Buffer; Count: Longint): Longint; virtual; abstract;
3., function, Seek (Offset: Longint; Origin: Word): Longint; virtual; abstract;
4. property Position: Longint;
5. property Size: Longint
Read, Write, and Seek are purely virtual functions that provide abstract methods for data reading, writing, and positioning. The Read method reads data from the Stream to the Buffer buffer, and Write implements the reverse operation, which returns the size of the actual read and write data. Seek provides methods for moving data pointers in Stream. The parameter Origin can take soFromBeginning, soFromCurrent, soFromEnd three values, Offset is the offset, and the return value is the position of the current Stream data pointer.
Position represents the location of the data pointer in the Stream. This property is readable and written, and it is actually implemented by calling the Seek method, so its more convenient to use this property when actually used. The Size property indicates the size of the current Stream, which is sometimes read-only for different Stream.
Two, Stream data read and write.
1. SaveToStream (Stream: TStream); file:// writes the data in the class to the current location of
您可能关注的文档
- 南京市毕业生工作中常见问题解答(Common problems in the work of graduates in Nanjing).doc
- 南京师范大学人文地理真题(Nanjing Normal University geography exam).doc
- 南京水利(Nanjing water conservancy).doc
- 南京橱柜定做(Nanjing custom made cabinets).doc
- 南京概况导游词(Nanjing Overview Guide Words).doc
- 南宁高新区管委会机构设置(Establishment of Administrative Committee of Nanning hi tech Zone).doc
- 南山纺织服饰(Nanshan textile apparel).doc
- 南岳衡山自助游亲历全攻略(Heng Mountain self-help tour experience all Raiders).doc
- 南平市科技合作项目(生物医药、食品)32项(Nanping science and technology cooperation project (biological medicine, food) 32 items).doc
- 南开大学13秋学期《职业生涯管理》在线作业(Nankai University 13 autumn semester career management online homework).doc
- 语文统编版八年级上册6国行公祭,为佑世界和平(大单元分层作业学生版).docx
- 中考总复习历史世界近代史第二单元资本主义制度的初步确立(课件).ppt
- 语文统编版八年级上册1消息二则(大单元分层作业教师版).docx
- 语文统编版八年级上册5一着惊海天——目击我国航母舰载战斗机首架次成功着舰(大单元分层作业学生版).docx
- 语文统编版八年级上册3首届诺贝尔奖颁发(大单元分层作业学生版).docx
- 语文统编版八年级上册4“飞天”凌空——跳水姑娘吕伟夺魁记(大单元分层作业学生版).docx
- 爆炸危险环境高海拔地区电力设计规范与修正系数.docx
- 爆炸危险环境仪表保温伴热设计规范与电伴热选型.docx
- 港口码头爆炸危险环境电力设计规范实务.docx
- 煤化工爆炸危险环境电力设计规范与气化炉.docx
原创力文档

文档评论(0)