Http11NioProtocol NIO协议 http请求中文乱码

NIO协议 http请求中文乱码

POST请求中文乱码问题解决方法:
请先确定server.xml中已配置编码格式,URIEncoding=“utf-8”;
在web.xml文件中添加编码过滤器,如下:

<!-- 解决post乱码 -->    
<filter>
    <filter-name>CharacterEncodingFilter</filter-name>
    <filter-class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
    <init-param>
        <param-name>encoding</param-name>
        <param-value>utf-8</param-value>
    </init-param>
    <!-- <init-param> <param-name>forceEncoding</param-name> <param-value>true</param-value> 
        </init-param> -->
</filter>
<filter-mapping>
    <filter-name>CharacterEncodingFilter</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

原文: https://www.cnblogs.com/yadongliang/p/5329898.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Java中可以使用HttpURLConnection或者Apache HttpClient来发送HTTP请求。其中,HttpURLConnection是Java标准库中提供的类,它可以通过向服务器发送不同的HTTP请求方法(如GET、POST等)来实现与服务器的交互。Apache HttpClient是一个第三方库,相对于HttpURLConnection来说,它提供了更多的功能和更简洁的API接口。 下面以HttpURLConnection为例介绍如何发送POST请求: ```java import java.io.BufferedReader; import java.io.DataOutputStream; import java.io.IOException; import java.io.InputStreamReader; import java.net.HttpURLConnection; import java.net.URL; import java.nio.charset.StandardCharsets; public class HttpPostExample { public static void main(String[] args) throws IOException { String url = "http://example.com/api/v1/user"; // 请求的url地址 String body = "{\"username\":\"test\",\"password\":\"123456\"}"; // 请求体 URL obj = new URL(url); HttpURLConnection con = (HttpURLConnection) obj.openConnection(); con.setRequestMethod("POST"); // 设置请求方法为POST con.setRequestProperty("Content-Type", "application/json; charset=UTF-8"); // 设置请求头 con.setDoOutput(true); // 允许输出流 // 发送请求体 try (DataOutputStream wr = new DataOutputStream(con.getOutputStream())) { byte[] bodyBytes = body.getBytes(StandardCharsets.UTF_8); wr.write(bodyBytes); wr.flush(); } // 处理响应结果 int responseCode = con.getResponseCode(); System.out.println("Response Code : " + responseCode); try (BufferedReader in = new BufferedReader(new InputStreamReader(con.getInputStream()))) { String inputLine; StringBuilder response = new StringBuilder(); while ((inputLine = in.readLine()) != null) { response.append(inputLine); } System.out.println("Response Body : " + response.toString()); } } } ``` 以上代码演示了如何使用HttpURLConnection发送POST请求,其中`url`表示请求的url地址,`body`表示请求体,需要根据实际情况进行修改。在发送请求时,需要设置请求方法为POST,并设置请求头`Content-Type`为`application/json; charset=UTF-8`。在发送请求体后,可以通过`getResponseCode`方法获取响应状态码,通过`getInputStream`方法获取响应内容。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值