public void uploadFileClient() { Toast.makeText(this, "现在已经开始上传了!", Toast.LENGTH_LONG).show(); String targetURL = actionUrl;// 上传指定URL File targetFile = new File(uploadFile);// 指定上传文件 PostMethod filePost = new PostMethod(targetURL); try { // 通过以下方法可以模拟页面参数提交 // filePost.setParameter("name", "中文"); // filePost.setParameter("pass", "1234"); byte[] buffer = new byte[1024]; Part[] parts = { new FilePart(targetFile.getName() + System.currentTimeMillis(), targetFile) }; filePost.setRequestEntity(new MultipartRequestEntity(parts, filePost.getParams())); HttpClient client = new HttpClient(); client.getHttpConnectionManager().getParams() .setConnectionTimeout(5000); int status = client.executeMethod(filePost); if (status == HttpStatus.SC_OK) { System.out.println("上传成功"); // 上传成功 } else { System.out.println("上传失败"); // 上传失败 } } catch (Exception ex) { ex.printStackTrace(); } finally { filePost.releaseConnection(); } }
详细解决方案
【转】android httpclient 下传文件
热度:91 发布时间:2016-05-01 17:20:21.0
相关解决方案
- httpclient 抓取不到网页内容是什么原因解决方案
- HttpClient 抓取网页js生成内容的有关问题。做过的侠客们。来看看
- httpclient 四抓取网页
- org.apache.http.client.HttpClient与org.apache.commons.httpclient.HttpClient的差别
- 【研究】httpclient 个别汉字乱码,该怎么解决
- android 读取byte[]中的元素解决方案
- android 标题栏兑现方式
- android 中Activity向BroadcastReceiver发送数据,该怎么解决
- Android 4.0 为什么模拟器老是提示小弟我谷歌拼音输入法已停止
- android:getSharedPreferences() 这是哪个类的方法解决思路
- android 怎么判断一个程序是否联网
- android 大量数据按周分组,该如何解决
- android RadioButton如何设置默认选中
- ksoap2-android-这个包,连接webService怎么设置超时
- android 怎么重新设置锚点
- android UI界面设计解决方案
- android 图片对象获取的有关问题
- HttpClient 跟 HttpServlet的区别
- android 怎么调用淘宝支付宝接口
- httpclient 新浪微博 图片下传
- Android 沿袭InputMethodService自定义输入法
- android 关于服务连接的疑义
- android 两个activity如何通信
- android 怎么实现对view的放大和缩小
- android 教程解决方法
- android ID,该如何处理
- 准备复习2-3个月,看java+android,请问有经验者,怎么看效果最好》
- android UI线程与AsyncTask的有关问题
- android(java)中的java.net能不能和c#的system.net.sockets进行tcp通信,该如何解决
- android ListView 中的onItemClick Intent 没法跳转