Error "This stream does not support seek operations" in C#
Asked Answered
H

7

62

I'm trying to get an image from an url using a byte stream. But i get this error message:

This stream does not support seek operations.

This is my code:

byte[] b;
HttpWebRequest myReq = (HttpWebRequest)WebRequest.Create(url);
WebResponse myResp = myReq.GetResponse();

Stream stream = myResp.GetResponseStream();
int i;
using (BinaryReader br = new BinaryReader(stream))
{
    i = (int)(stream.Length);
    b = br.ReadBytes(i); // (500000);
}
myResp.Close();
return b;

What am i doing wrong guys?

Hangbird answered 8/8, 2010 at 10:45 Comment(1)
A similar situation was answered and may help, see: https://mcmap.net/q/303957/-what-is-the-best-way-to-read-getresponsestreamInhume
K
84

You probably want something like this. Either checking the length fails, or the BinaryReader is doing seeks behind the scenes.

HttpWebRequest myReq = (HttpWebRequest)WebRequest.Create(url);
WebResponse myResp = myReq.GetResponse();

byte[] b = null;
using( Stream stream = myResp.GetResponseStream() )
using( MemoryStream ms = new MemoryStream() )
{
  int count = 0;
  do
  {
    byte[] buf = new byte[1024];
    count = stream.Read(buf, 0, 1024);
    ms.Write(buf, 0, count);
  } while(stream.CanRead && count > 0);
  b = ms.ToArray();
}

edit:

I checked using reflector, and it is the call to stream.Length that fails. GetResponseStream returns a ConnectStream, and the Length property on that class throws the exception that you saw. As other posters mentioned, you cannot reliably get the length of a HTTP response, so that makes sense.

Komarek answered 8/8, 2010 at 11:7 Comment(4)
The stream length fails but the response.ContentLength does return a valid length.Wager
Don't need to get it into bytes like this, though, for an image, if you want to use it as an image. See my answer, below.Bobby
You don't need to do the do { ... } , you can use stream.CopyTo(ms); instead.Sway
I use this code, but my memorystream throw an exception "readtimeout & writetimeout" Also my stream. Canseek = false I tride many solutions but nothing help meGlennisglennon
R
15

Use a StreamReader instead:

HttpWebRequest myReq = (HttpWebRequest)WebRequest.Create(url);
WebResponse myResp = myReq.GetResponse();

StreamReader reader = new StreamReader(myResp.GetResponseStream());
return reader.ReadToEnd();

(Note - the above returns a String instead of a byte array)

Radbun answered 8/8, 2010 at 11:16 Comment(3)
(... which then can be converted to a byte array using functions provided by the Encoding classes.)Jardena
If it had the routines or link on how to get it from a StreamReader into bytes, or an image. Without that, we are still at square one, I'd say. This did not help me at all.Bobby
Great, but StreamReader does not support binaryWarmedover
C
8

You can't reliably ask an HTTP connection for its length. It's possible to get the server to send you the length in advance, but (a) that header is often missing and (b) it's not guaranteed to be correct.

Instead you should:

  1. Create a fixed-length byte[] that you pass to the Stream.Read method
  2. Create a List<byte>
  3. After each read, call List.AddRange to append the contents of your fixed-length buffer onto your byte list

Note that the last call to Read will return fewer than the full number of bytes you asked for. Make sure you only append that number of bytes onto your List<byte> and not the whole byte[], or you'll get garbage at the end of your list.

Canthus answered 8/8, 2010 at 10:51 Comment(2)
Hi, I'm kind of confused now. how should my code look like then?Hangbird
@Yustme, var buffer = new List<byte>(); while (true) { byte[] tmpBuffer = new byte[1024]; int bytesRead = br.Read(tmpBuffer, 0, tmpBuffer.length); buffer.AddRange(tmpBuffer.Take(bytesRead)); if (bytesRead < tmpBuffer.length) { break; } }Syncretize
B
5

If the server doesn't send a length specification in the HTTP header, the stream size is unknown, so you get the error when trying to use the Length property.

Read the stream in smaller chunks, until you reach the end of the stream.

Benedictine answered 8/8, 2010 at 10:50 Comment(0)
B
4

With images, you don't need to read the number of bytes at all. Just do this:

Image img = null;
string path = "http://www.example.com/image.jpg";
WebRequest request = WebRequest.Create(path);
req.Credentials = CredentialCache.DefaultCredentials; // in case your URL has Windows auth
WebResponse resp = req.GetResponse();

using( Stream stream = resp.GetResponseStream() ) 
{
    img = Image.FromStream(stream);
    // then use the image
}
Bobby answered 8/11, 2014 at 4:28 Comment(0)
G
1

Perhaps you should use the System.Net.WebClient API. If already using client.OpenRead(url) use client.DownloadData(url)

var client = new System.Net.WebClient();
byte[] buffer = client.DownloadData(url);
using (var stream = new MemoryStream(buffer))
{
    ... your code using the stream ...
}

Obviously this downloads everything before the Stream is created, so it may defeat the purpose of using a Stream. webClient.DownloadData("https://your.url") gets a byte array which you can then turn into a MemoryStream.

Gabardine answered 9/1, 2019 at 16:29 Comment(0)
I
0

The length of a stream can not be read from the stream since the receiver does not know how many bytes the sender will send. Try to put a protocol on top of http and send i.e. the length as first item in the stream.

Inductive answered 8/8, 2010 at 10:50 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.