We Recommend

Learning Python Learning Python
The authors of Learning Python show you enough essentials of the Python scripting language to enable you to begin solving problems right away, then reveal more powerful aspects of the language one at a time. This approach is sure to appeal to programmers and system administrators who have urgent problems and a preference for learning by semi-guided experimentation.


Posted By

whitetiger on 11/09/06


Tagged

url image file java python script xml download text images apache files Net directory vim build ant jikes javac aspnet Handling applet jar stream www csharp


Versions (?)


Who likes this?

3 people have marked this snippet as a favorite

yuconner
anayhk
taboularasa


Python - getFile Internet


Published in: Python 


  1. package get.file.example;
  2.  
  3. import java.io.BufferedInputStream;
  4. import java.io.FileOutputStream;
  5. import java.io.IOException;
  6. import java.net.MalformedURLException;
  7. import java.net.URL;
  8.  
  9. public class GetFileExample
  10. {
  11. public GetFileExample()
  12. {
  13. try
  14. {
  15. byte[] bite = new byte[2048];
  16. int read;
  17. URL url = new URL("http://switch.dl.sourceforge.net/sourceforge/pys60miniapps/FlickrS60_src_v0.1b.tar.bz2");
  18.  
  19. BufferedInputStream bis = new BufferedInputStream(url.openStream());
  20. FileOutputStream fos = new FileOutputStream("/tmp/file.tar.bz2");
  21.  
  22. while((read = bis.read(bite))>0)
  23. {
  24. fos.write(bite, 0, read);
  25. System.out.println("--");
  26. }
  27.  
  28. fos.close();
  29. bis.close();
  30.  
  31. System.out.println("FINE");
  32.  
  33. }
  34. catch(MalformedURLException e)
  35. {
  36. e.printStackTrace();
  37. }
  38. catch(IOException e)
  39. {
  40. e.printStackTrace();
  41. }
  42. }
  43.  
  44. public static void main(String[] args)
  45. {
  46. new GetFileExample();
  47. }
  48. }

Report this snippet 

You need to login to post a comment.