Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to download bytes of file from URL at specific location from in input-stream?

share|improve this question
Can you be more specific as to what you mean by location from an input-stream? – jzd Jul 19 '11 at 12:51
Assume my file size is of 10 Bytes. I created input stream for that then I want to read last 3 bytes from input stream. (8 to 10 bytes) – Nitul Jul 19 '11 at 12:53

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.

2 Answers

up vote 1 down vote accepted

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 skip() than can help you skip past the bytes you don't want.

share|improve this answer
if my file size is of 1GB and I want only last 1KB then It is west of my resources if I read all bytes... – Nitul Jul 19 '11 at 12:56
Did you try the skip method? – jzd Jul 19 '11 at 13:00
OK. Can you tell me how to get file size? – Nitul Jul 19 '11 at 13:02
Possibly the getContentLength() method on the URLConnection object. – jzd Jul 19 '11 at 13:05

create input stream from URL, read bytes and do what you want with them, e.g.

InutStream in = new URL("http://foo.bar").openStream();
OutputStream out = new FileOutputStream("/usr/foo/bar");
byte[] buf = new byte[1024];
int n = 0;

while((n = in.read(buf))) {
    out.write(buf, 0, n);
    out.flush();
}

in.close();
out.close();
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.