You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I tried to get an object from S3 by using GetObjectStream method. I added
bucket and key as parameters, and got the full length of the stream.
below is my code.
var stream = s3Service.GetObjectStream(bucketFullPath, key);
int streamLength = FileSize;
byte[] Data = new byte[streamLength];
stream.Read(Data, 0, streamLength);
stream.Close();
When I checked the Data[], I found it only contains a few thousands of
valid byte, followed by massive white spaces.
I am using version 1.0.1 zip, with VS 2008
Any Help?
Original issue reported on code.google.com by rong.zh2...@gmail.com on 23 Sep 2009 at 7:22
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
rong.zh2...@gmail.com
on 23 Sep 2009 at 7:22The text was updated successfully, but these errors were encountered: