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
servletstag? There is nojavax.servlet.*API involved here. You would have exactly the same problem when doing so in a plain vanilla Java class with amain()method. – BalusC Aug 3 '11 at 20:14