zoukankan      html  css  js  c++  java
  • httpclient 发送文件和字符串信息

                    HttpPost httpPost = new HttpPost(url);
                    MultipartEntity reqEntity = new MultipartEntity();
                    if (!imageurl.equals("")) {
                            FileBody file = new FileBody(new File(imageurl));
                            reqEntity.addPart("pic", file);
                    }

                    StringBody gold1 = new StringBody(gold);
                    StringBody content1 = new StringBody(content);
                    StringBody part1 = new StringBody(partId);

                    reqEntity.addPart("gold", gold1);
                    reqEntity.addPart("content", content1);
                    reqEntity.addPart("part", part1);
                    /*
                     * List<NameValuePair> params = new ArrayList<NameValuePair>();
                     * params.add(new BasicNameValuePair("gold", gold)); params.add(new
                     * BasicNameValuePair("content", content)); params.add(new
                     * BasicNameValuePair("part", partId));
                     */
                    httpPost.setEntity(reqEntity);

  • 相关阅读:
    Vue中过度动画效果应用
    最小公倍数和最大公约数求解方法
    Vue实现双向绑定的原理以及响应式数据
    Hive SQL语法总结
    java安装配置
    Ubuntu vmware补丁
    centos6 安装tensorflow
    python hive
    python 连接 hive
    ubuntu下python通过cx_Oracle库访问oracle数据库
  • 原文地址:https://www.cnblogs.com/kobe8/p/4030564.html
Copyright © 2011-2022 走看看