Posts Tagged ‘数据流’

文件操作之ADODB.Stream

二月 6, 2007, Posted by cike at 4:14 下午

示例dim streamset stream = Server.CreateObject("ADODB.Stream")stream.mode = 3 ‘1-读,2-写,3-读写stream.type = 1 ‘1-二进制,2-文本stream.OpendataStream.position = indexdataStream.CopyTo stream, count ‘将另一 Stream 对象 dataStream 从 index 到 index+count 的数据拷贝到…

Read More
Scroll to the top