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 do I get an InputStream from a file url?

for example, I want to take the file at the url wwww.somewebsite.com/a.txt and read it as an InputStream in Java, through a servlet.

I've tried

InputStream is = new FileInputStream("wwww.somewebsite.com/a.txt");

but what I got was an error:

java.io.FileNotFoundException
share|improve this question
1  
Why did you rollback the removal of the servlets tag? There is no javax.servlet.* API involved here. You would have exactly the same problem when doing so in a plain vanilla Java class with a main() method. – BalusC Aug 3 '11 at 20:14
Honest mistake. – Whitebear Aug 4 '11 at 9:51

3 Answers

up vote 18 down vote accepted

Use java.net.URL#openStream() with a proper URL (including the protocol!). E.g.

InputStream input = new URL("http://www.somewebsite.com/a.txt").openStream();
// ...

See also:

share|improve this answer
you're a life saver man! – Whitebear Aug 3 '11 at 19:54
You're welcome. – BalusC Aug 3 '11 at 19:55

Try:

final InputStream is = new URL("http://wwww.somewebsite.com/a.txt").openStream();
share|improve this answer

(a) wwww.somewebsite.com/a.txt isn't a 'file URL'. It isn't a URL at all actually. If you put http:// on the front of it it would be an HTTP URL, which is clearly what you intend here.

(b) FileInputStream is for files, not URLs.

(c) The way to get an input stream from any URL is via URL.openStream(), or URL.getConnection().getInputStream(), which is equivalent but you might have other reasons to get the URLConnection and play with it first.

share|improve this answer

Your Answer

 
discard

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

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