Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 9th, 2012  |  syntax: None  |  size: 0.37 KB  |  hits: 17  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Write a file to a web directory
  2. URL url = new URL("http://www.jnks.de/Kochrezepte/PICS/Rezept_Bilder/test.jpg");
  3.  
  4. HttpURLConnection connection = (HttpURLConnection) url.openConnection();
  5. connection.setDoOutput(true);
  6. connection.setRequestProperty("Content-Type", "multipart/form-data");
  7.  
  8. IOUtils.copy(file.getInputStream(), connection.getOutputStream());
  9.        
  10. "image/jpeg"