WebClient.UploadFile 将上传文件作为流传递

发布于 2024-12-27 05:47:22 字数 121 浏览 1 评论 0原文

我正在尝试在项目中使用 WebClient.UploadFile 将文件发布到服务器。 WebClient.UploadFile 接受文件名 uri 作为参数,但我想传递文件流而不是文件名 uri。 WebClient 可以吗?

I am trying to use WebClient.UploadFile in my project to post file to server. WebClient.UploadFile accept file name uri as parameter but I would like to pass file stream instead of file name uri. Is that possible with WebClient?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

酒与心事 2025-01-03 05:47:22

以下是一些示例,展示如何使用 WebClient 类

使用 WebClient.OpenWrite< /code>

using (var client = new WebClient())
{
     var fileContent = System.IO.File.ReadAllBytes(fileName);
     using (var postStream = client.OpenWrite(endpointUrl))
     {
         postStream.Write(fileContent, 0, fileContent.Length);
     }
 }

使用 WebClient.OpenWriteAsync< /代码>

using (var client = new WebClient())
{
     client.OpenWriteCompleted += (sender, e) =>
     {
        var fileContent = System.IO.File.ReadAllBytes(fileName);
        using (var postStream = e.Result)
        {
            postStream.Write(fileContent, 0, fileContent.Length);    
        }
     };
     client.OpenWriteAsync(new Uri(endpointUrl));
 }

Here are some examples that shows how to write stream to the specified resource using WebClient class:

Using WebClient.OpenWrite:

using (var client = new WebClient())
{
     var fileContent = System.IO.File.ReadAllBytes(fileName);
     using (var postStream = client.OpenWrite(endpointUrl))
     {
         postStream.Write(fileContent, 0, fileContent.Length);
     }
 }

Using WebClient.OpenWriteAsync:

using (var client = new WebClient())
{
     client.OpenWriteCompleted += (sender, e) =>
     {
        var fileContent = System.IO.File.ReadAllBytes(fileName);
        using (var postStream = e.Result)
        {
            postStream.Write(fileContent, 0, fileContent.Length);    
        }
     };
     client.OpenWriteAsync(new Uri(endpointUrl));
 }
时间海 2025-01-03 05:47:22

您应该能够使用方法 WebClient.OpenWriteOpenWriteAsync 将流发送回您的服务器。

如果您使用后者,请订阅 OpenWriteCompleted 并使用 e.Result 作为 CopyTo 的流。

You should be able to use the methods WebClient.OpenWrite and OpenWriteAsync to send a stream back to your server.

If you use the later then subscribe to OpenWriteCompleted and use e.Result as the stream to CopyTo.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文