Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use 'HttpURLConnection' in Java with the "Range" property to download a segment of a file, i set the range 60000-560000, and i can read 500000 bytes data, which is 560000-60000. But when the range is 0-60000, i can read 60001 bytes data, which does not equal 60000-0.

Why? Can anybody give me some explanation?

share|improve this question
1  
It may depend on the server. Different servers handle byte range requests differently. Some don't handle it them at all. – ccleve Jun 10 '11 at 2:04
Can you grab the header from the response to get us an idea which server you are using. – whatnick Jun 10 '11 at 2:08
1  
Actually from glancing at the spec's examples, the 0-60000 SHOULD give you 60001 bytes. You should be able to read 500,001 bytes with your other range. So your issues is actually inverted. – MJB Jun 10 '11 at 3:35

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.