Copying from one stream to another?

前端 未结 4 2071
伪装坚强ぢ
伪装坚强ぢ 2021-02-09 03:07

For work, the specification on my project is to use .Net 2.0 so I don\'t get the handy CopyTo function brought about later on.

I need to copy the response s

相关标签:
4条回答
  • 2021-02-09 03:53

    The size of the buffer does matter. If you're copying a megabyte of data one byte at a time, for example, you're going to make a 2^20 iterations through the loop. If you're copying 1 kilobyte at a time, you'll only make 2^10 iterations through the loop. There is significant overhead in the calls to Read and Write when you're making a million of them.

    For reading FileStream, I typically use a buffer that's between 64K and 256K. Anything less than 32K shows a marked decrease in performance, as does anything above 256K. The difference between using a 64K buffer and a 256K buffer is not worth the extra memory. Be aware, though, that those numbers are on my system and across my network. Your numbers will vary depending on hardware and operating system.

    For network streams, you should select a buffer size that will keep up with the incoming data stream. I'd suggest at least 4 kilobytes, which will give you some buffer if the write stalls for any reason.

    0 讨论(0)
  • 2021-02-09 03:55

    This is a handy function. And yes, the buffer size matters. Increasing it might give you better performance on large files.

    public static void WriteTo(Stream sourceStream, Stream targetStream)
    {
           byte[] buffer = new byte[0x10000];
           int n;
           while ((n = sourceStream.Read(buffer, 0, buffer.Length)) != 0)
               targetStream.Write(buffer, 0, n);
    }
    
    0 讨论(0)
  • 2021-02-09 04:03

    You can get rid of the BufferedStream, it's only useful if you are reading small chunks of the stream. Just get the response stream in a variable and use that:

    Stream response = HttpResponse.GetResponseStream();
    

    A buffer that is too small will reduce the performance. You can use a larger buffer, so that at least the data from an entire IP packet fits. I looked around a bit, and 4096 bytes should be enough for that. You can really use any size up to 85 kb, after that it's allocated in the large objects heap, which you should avoid to do when there is no reason for it.

    Other than that, it's about as efficient as it gets.

    0 讨论(0)
  • 2021-02-09 04:08

    I can think of two ways.

    1. Check if Stream.MemberWiseClone() fits your need. It gets you a shallow copy of your object.

    2. Check if this works, if both the ends are of the Stream type.

      BufferedStream bs = new BufferedStream((Stream)memoryStreamObject);

    0 讨论(0)
提交回复
热议问题