Advertisement
Guest User

pariviere

a guest
Feb 23rd, 2008
453
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.96 KB | None | 0 0
  1. package fr.ippon.webdav;
  2.  
  3. import java.io.BufferedInputStream;
  4. import java.io.IOException;
  5. import java.io.OutputStream;
  6.  
  7. import org.apache.commons.httpclient.HttpClient;
  8. import org.apache.commons.httpclient.HttpStatus;
  9. import org.apache.commons.httpclient.methods.GetMethod;
  10. import org.apache.commons.httpclient.methods.PutMethod;
  11. import org.apache.commons.httpclient.methods.RequestEntity;
  12.  
  13. public class Test {
  14.     public static void main(String[] args) throws Exception {
  15.         GetMethod get = null;
  16.         PutMethod put =null;
  17.         try {
  18.             HttpClient client = new HttpClient();
  19.            
  20.             get = new GetMethod("http://archive.apache.org/dist/httpcomponents/commons-httpclient/3.0/source/commons-httpclient-3.0-src.tar.gz");
  21.             put = new PutMethod("http://localhost/commons-httpclient-3.0-src.tar.gz");
  22.            
  23.             int status = 0;
  24.            
  25.            
  26.             status = client.executeMethod(get);
  27.            
  28.             if (status == HttpStatus.SC_OK) {
  29.                 BufferedInputStream in = new BufferedInputStream(get.getResponseBodyAsStream());
  30.                
  31.                 FileRequestEntity entity = new FileRequestEntity(in);      
  32.                 put.setRequestEntity(entity);
  33.                
  34.                 status  = client.executeMethod(put);
  35.                
  36.                 if (in != null)
  37.                     in.close();
  38.             }
  39.         } finally {
  40.             put.releaseConnection();
  41.             get.releaseConnection();
  42.         }
  43.     }
  44.  
  45.    
  46.     public static class FileRequestEntity implements RequestEntity {
  47.         BufferedInputStream in;
  48.         public FileRequestEntity(BufferedInputStream in) {
  49.             super();
  50.             this.in = in;
  51.         }
  52.         public long getContentLength() {
  53.             return -1;
  54.         }
  55.         public String getContentType() {
  56.              return "text/plain; charset=UTF-8";
  57.         }
  58.         public boolean isRepeatable() {
  59.             return true;
  60.         }
  61.         public void writeRequest(OutputStream out) throws IOException {
  62.            
  63.             try {
  64.                 int l;
  65.                 byte[] buffer = new byte[1024];
  66.                 while ((l = in.read(buffer)) != -1) {
  67.                     out.write(buffer, 0, l);
  68.                 }
  69.             }
  70.             finally {
  71.                 in.close();
  72.             }
  73.         }
  74.     }
  75. }
  76.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement