1

嗨,我收到错误“

“System.IO.Stream”不包含“CopyTo”的定义,并且找不到接受“System.IO.Stream”类型的第一个参数的扩展方法“CopyTo”(您是否缺少 using 指令或程序集引用?)

“我在我的项目中使用以下代码行。

Bitmap img;
 using (var ms = new MemoryStream())
 {
    fu.PostedFile.InputStream.CopyTo(ms);
    ms.Position = 0;
    img = new System.Drawing.Bitmap(ms);
 }

为什么我收到此错误?如何解决这个问题?
请帮我...

4

2 回答 2

3

Stream.CopyTo 是在 .NET 4 中引入的。由于您的目标是 .Net 2.0,因此它不可用。在内部,CopyTo主要是这样做(虽然有额外的错误处理)所以你可以使用这个方法。为方便起见,我将其作为扩展方法。

//it seems 81920 is the default size in CopyTo but this can be changed
public static void CopyTo(this Stream source, Stream destination, int bufferSize = 81920)
{
    byte[] array = new byte[bufferSize];
    int count;
    while ((count = source.Read(array, 0, array.Length)) != 0)
    {
       destination.Write(array, 0, count);
    }
}

所以你可以简单地做

using (var ms = new MemoryStream())
{       
    fu.PostedFile.InputStream.CopyTo(ms);
    ms.Position = 0;
    img = new System.Drawing.Bitmap(ms);
}
于 2013-06-30T13:22:01.017 回答
0

正如 Caboosetp 提到的,我认为正确的方法(我从其他地方得到的,可能是在 SO 上)是:

public static void CopyTo(Stream input, Stream outputStream)
    {
        byte[] buffer = new byte[16 * 1024]; // Fairly arbitrary size
        int bytesRead;
        while ((bytesRead = input.Read(buffer, 0, buffer.Length)) > 0)
        {
            outputStream.Write(buffer, 0, bytesRead);
        }
    }

和:

Stream stream = MyService.Download(("1231"));
using (Stream s = File.Create(file_path))
{
    CopyTo(stream, s);
}
于 2018-01-30T17:39:23.817 回答