gpt4 book ai didi

c# - 如何从响应流HttpWebRequest C#中读取数据

转载 作者:可可西里 更新时间:2023-11-01 15:28:53 26 4
gpt4 key购买 nike

我正在构建 Xamarin 应用程序。我仍然处于非常非常菜鸟的水平,我来自 Nativescript,以及一些(不多)Native Android。

我有一个执行长时间操作的 Express 服务器。在此期间,Xamarin 客户端等待微调器。

在服务器上,我已经计算了作业的进度百分比,并且我想在每次更改时将其发送给客户端,以便用进度交换微调器。

不过,在服务器上,任务已经完成了response.write('10'); 其中数字 10 代表已完成工作的“10%”。

现在是凝灰岩部分。我如何从流中读取那 10 个?现在它作为 JSON 响应工作,因为它等待整个响应的到来。

Xamarin 客户端 HTTP GET:

// Gets weather data from the passed URL.
async Task<JsonValue> DownloadSong(string url)
{
// Create an HTTP web request using the URL:
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(new Uri(url));
request.ContentType = "application/json";
request.Method = "GET";

// Send the request to the server and wait for the response:
using (WebResponse response = await request.GetResponseAsync())
{
// Get a stream representation of the HTTP web response:
using (System.IO.Stream stream = response.GetResponseStream())
{
// Use this stream to build a JSON document object:
JsonValue jsonDoc = await Task.Run(() => JsonValue.Load(stream));

// Return the JSON document:
return jsonDoc;
}
}
}

每次作业进度发生变化时,服务器都会写入响应,发送一个包含百分比值的纯字符串。在作业结束时,它将写入一个最终字符串,这将是一个 Base64(很长)字符串。然后响应将关闭。

任何人都可以告诉我如何更改该脚本以读取服务器发送的每个数据 block 吗?

最佳答案

首先你需要定义一些协议(protocol)。为简单起见,我们可以说服务器发送:

  • (可选)当前进度为 3 位字符串(“010” - 表示 10%)
  • (必填)最终进度为“100”
  • (必填)json数据

因此,例如,有效响应是“010020050090100{..json here..}”。

然后您可以读取 3 字节 block 中的响应,直到找到“100”。然后你读json。示例代码:

using (System.IO.Stream stream = response.GetResponseStream()) {
while (true) {
// 3-byte buffer
byte[] buffer = new byte[3];
int offset = 0;
// this block of code reliably reads 3 bytes from response stream
while (offset < buffer.Length) {
int read = await stream.ReadAsync(buffer, offset, buffer.Length - offset);
if (read == 0)
throw new System.IO.EndOfStreamException();
offset += read;
}
// convert to text with UTF-8 (for example) encoding
// need to use encoding in which server sends
var progressText = Encoding.UTF8.GetString(buffer);
// report progress somehow
Console.WriteLine(progressText);
if (progressText == "100") // done, json will follow
break;
}
// if JsonValue has async api (like LoadAsync) - use that instead of
// Task.Run. Otherwise, in UI application, Task.Run is fine
JsonValue jsonDoc = await Task.Run(() => JsonValue.Load(stream));
return jsonDOc;
}

关于c# - 如何从响应流HttpWebRequest C#中读取数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49611638/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com