日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Httpclient 实现带参文件上传

發(fā)布時間:2025/3/15 编程问答 15 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Httpclient 实现带参文件上传 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

這里直接貼出的是我封裝好的doPostFile方法,httpclient 的版本是3.1。

public static String doPostFile(String url, Part[] parts){String response = null;PostMethod postMethod = new PostMethod(url);try{ //設置請求實體postMethod.setRequestEntity(new MultipartRequestEntity(parts,postMethod.getParams()));HttpClient client = new HttpClient();//設置連接超時限度client.getHttpConnectionManager().getParams().setConnectionTimeout(5000);client.executeMethod(postMethod);if(postMethod.getStatusCode() == HttpStatus.SC_OK){response = new String(postMethod.getResponseBodyAsString().getBytes("utf-8"));}} catch(Exception e){LOGGER.error("HttpServiceSender.doPostFile()",e.getMessage());} finally {postMethod.releaseConnection();}return response;}

調用此方法的代碼,注意參數(shù)的傳遞方式

public String uploadImage(File file,String id,String name){String result = null;try{ //文件part,new FilePart添加的是File類型的文件,后面StringPart則為字符串參數(shù)Part[] parts = { new FilePart("file", file),new StringPart("id", id), new StringPart("id",name)};result = HttpServiceSender.doPostFile(SERVER+"service/resource/upload",parts);}catch(Exception e){Logger.error("ImageService.uploadImage()", e.getMessage()); } return result;}

?

轉載于:https://www.cnblogs.com/zivxiaowei/p/3243541.html

總結

以上是生活随笔為你收集整理的Httpclient 实现带参文件上传的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。