1

我的代码如下:

URL = "https://abcde.com/api//export/1234.wav?type=wav";
HttpResponseMessage response = client.GetAsync(URL).Result;

它显示"StatusCode: 200, ReasonPhrase: 'OK', Version: 1.1, Content: System.Net.Http.StreamContent"

StreamContent一个wav文件,文件名是1234.wav. 如何从HttpResponseMessage Steam Content responseC# 中下载 wav 文件?

非常感谢。

4

1 回答 1

0

在您的 HttpResponse 对象中,将有一个响应字段。你有几个选择。你想要做的是使用ReadAsStreamAsync().Result;

这将在您的 HttpResponse 消息中输出内容流。

在此处阅读有关httpcontent 的更多信息

于 2019-03-11T22:45:10.880 回答