How to download bytes of file from URL at specific location from in input-stream?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
closed as not a real question by Bill the Lizard♦ Mar 29 '12 at 12:25
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
You will have to "read" all the bytes. Just skip the first ones that you don't need. When you get to the point that you want to start saving data from the stream, save just the bytes you want and then close the stream. Depending on the class there are methods like |
|||||||||
|
|
create input stream from URL, read bytes and do what you want with them, e.g.
|
|||
|
|