Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个异步服务,我必须将文件从客户端传输到服务。该服务被配置为使用流传输模式,所以如果我没记错的话,文件被传输而无需等待加载所有文件。
我想知道如何知道文件是否完成,因为我需要转换此流才能将此流转换为 byte[] 以将文件存储在数据库中。
我问这个是因为当我从客户端收到服务中的文件时,我收到一个只读流,具有可用的长度属性,并且我无法将此流转换为字节数组。
谢谢。
为什么不创建一个内存流,然后将字节读入一个数组?
MemoryStream ms = new MemoryStream(dataHERE) byte[] passing = ms.ReadByte();