我正在尝试读取responseStream到最后,并在br.ReadBytes行中收到错误“不支持指定的方法”。
我在做什么错了?
result3 = df3['Column1']=='Not_Match'
result3
if result3.all():
df3['Column2'] = Match_Org
答案 0 :(得分:0)
我遇到错误:NotSupportedException:此流不支持搜索 操作。
假设您需要字节数组,为什么不使获取图像变得容易得多:
byte[] imageBytes
using (var webClient = new WebClient()) {
imageBytes = webClient.DownloadData("http://yourimage");
}