如何使用http放入android上传文件?

时间:2011-05-20 02:44:41

标签: android web-services rest httprequest http-put

我有一个REST Web服务和android。现在我想使用android来请求Http Put来调用Web服务。在我的REST Web服务中,如果用户想要做Http Put,他可以在终端中请求:

curl -H“Content-Type:application / vnd.org.snia.cdmi.dataobject”-v -T /home/student1/a.jpg http://localhost:8080/user1/folder/a.jpg

我的问题是如何使用HttpPut在android中设置-T /home/student1/a.jpg?

1 个答案:

答案 0 :(得分:8)

以下是您可以使用的一些代码段:

File f = new File(...);
...
...
DefaultHttpClient httpclient = new DefaultHttpClient();
HttpPut httpPut = new HttpPut("http://mydomain.com/some/action");

MultipartEntity entity = new MultipartEntity();
entity.addPart("myFile", new FileBody(f));

httpPut.setEntity(entity);
HttpResponse response  = httpclient.execute(httpPut);