解决HttpURLConnection请求时传中文参数乱码问题

解决HttpURLConnection请求时传中文参数乱码

前提: 项目的编码是utf-8, 即要保证项目下所有文件的编码都是utf-8
示例代码如下:

/**
 * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
 */
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    response.setCharacterEncoding("utf-8");
    request.setCharacterEncoding("utf-8");
    response.setContentType("text/html;charset=utf-8");

    String mobilePhone = request.getParameter("mobilePhone");
    String realName = request.getParameter("realName");


    realName = URLEncoder.encode(realName, "utf-8");

    String params = "method=" + method 
            + "&appId=" + appId 
            + "&sign=" + sign
            + "&timestamp=" + timestamp
            + "&mdn=" + mobilePhone
            + "&realName=" + realName;

    String returnStr = ApiUtil.getResult(Constants.CLOUD_API, params, "utf-8");
    JSONObject jo = (JSONObject) JSONObject.parse(returnStr);

    response.getWriter().print(jo);
    response.getWriter().flush();
    response.getWriter().close();

}

/**
 * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
 */
protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    this.doGet(request, response);
}

realName可能出现中文, 我们对其进行URLEncoder编码, ApiUtil.getResult(Constants.CLOUD_API, params, "utf-8");这里传递utf-8参数

/** 
 * @param urlStr 
 *            请求的地址 
 * @param content 
 *            请求的参数 格式为:name=xxx&pwd=xxx 
 * @param encoding 
 *            服务器端请求编码。如GBK,UTF-8等 
 * @return 
 */  
public static String getResult(String urlStr, String content, String encoding) {  
    URL url = null;  
    HttpURLConnection connection = null;  
    try {  
        url = new URL(urlStr);  
        connection = (HttpURLConnection) url.openConnection();// 新建连接实例  
        connection.setConnectTimeout(2000);// 设置连接超时时间,单位毫秒  
        connection.setReadTimeout(2000);// 设置读取数据超时时间,单位毫秒  
        connection.setDoOutput(true);// 是否打开输出流 true|false  
        connection.setDoInput(true);// 是否打开输入流true|false  
        connection.setRequestMethod("POST");// 提交方法POST|GET  
        connection.setUseCaches(false);// 是否缓存true|false
        connection.setRequestProperty("Accept-Charset", encoding);
        connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded;charset=" + encoding);
        connection.connect();// 打开连接端口  
        DataOutputStream out = new DataOutputStream(connection  
                .getOutputStream());// 打开输出流往对端服务器写数据  
        out.writeBytes(content);// 写数据,也就是提交你的表单 name=xxx&pwd=xxx  
        out.flush();// 刷新  
        out.close();// 关闭输出流  
        BufferedReader reader = new BufferedReader(new InputStreamReader(  
                connection.getInputStream(), encoding));// 往对端写完数据对端服务器返回数据  
        // ,以BufferedReader流来读取  
        StringBuffer buffer = new StringBuffer();  
        String line = "";  
        while ((line = reader.readLine()) != null) {  
            buffer.append(line);  
        }  
        reader.close();  
        return buffer.toString();  
    } catch (IOException e) {  
        e.printStackTrace();  
    } finally {  
        if (connection != null) {  
            connection.disconnect();// 关闭连接  
        }  
    }  
    return null;  
}

标准的 HTTP POST 是一种 application/x-www-form-urlencoded 类型的网络表单,传递的参数都会被写入请求信息主体中。

connection.setRequestProperty("Accept-Charset", encoding);
connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded;charset=" + encoding);
  • 2
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
通过HTTPURLConnection发送GET请求添加参数的方法如下: 1. 创建URL对象,将目标网址作为参数传入URL构造函数中。 2. 调用URL对象的openConnection()方法获取连接对象HttpURLConnection。 3. 设置连接超间和读取超间,可以使用connection.setConnectTimeout(timeout)和connection.setReadTimeout(timeout)方法设置。 4. 设置请求方式为GET,使用connection.setRequestMethod("GET")方法设置。 5. 添加参数到URL中,可以通过在URL后面添加参数的方式实现。例如,如果参数是"username=lilp21&password=pass1234",则可以使用String的拼接方式将参数添加到URL中。 6. 调用connection.connect()方法建立连接。 7. 获取输入流,使用connection.getInputStream()方法获取。 8. 使用BufferedReader逐行读取输入流中的数据,将数据存储到StringBuffer中。 9. 关闭输入流和连接,使用reader.close()和connection.disconnect()方法关闭。 10. 返回获取到的数据。 中提到的方法是通过创建一个URL对象,并使用openConnection()方法获得HttpURLConnection对象。然后设置连接超间和读取超间,使用setConnectTimeout()和setReadTimeout()方法设置。接下来设置请求方式为GET,使用setRequestMethod("GET")方法。最后使用connect()方法建立连接,并获取输入流以及进行后续的操作。 中的方法是通过调用doGet()方法来发送GET请求并获取返回结果。在方法内部的URL对象和HttpURLConnection对象的创建和连接设置与上述步骤相同。 中的代码片段是一个实际的示例,通过创建HashMap对象,将参数以键值对的形式放入HashMap中。然后使用JSONObject将HashMap转换为JSON格式的字符串。接着使用URLEncoder对JSON字符串进行编码,并将编码后的字符串添加到URL中。最后使用HttpUtil.doInnerGet()方法发送GET请求,并获取返回结果。 综上所述,通过创建URL对象,设置连接超间、读取超间和请求方式为GET,添加参数到URL中,并发送GET请求可以实现在HTTPURLConnection中添加参数

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值