本文介绍了Http请求post读取多个字节数组vb.net的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有以下代码来读取从客户端发送的文件



i have the below code to read the file that is being send from the client

Dim strLen As Integer = 0
Dim str As System.IO.Stream
strLen = CInt(str.Length)
Dim strArray(strLen) As Byte
str.Seek(0, SeekOrigin.Begin)
str.Read(strArray, 0, strLen)
str.Close()





如果客户端发送多个文件,我如何从服务器端读取它们?可以使用上面提到的相同方法吗?



if the client sends multiple files how can i read them from the server side? is it possible using the same method mentioned above?

推荐答案

这篇关于Http请求post读取多个字节数组vb.net的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-19 17:05