解决HttpUrlConnection乱码问题

本文介绍了解决HTTP请求中因中文字符引起的乱码问题的方法。包括如何正确设置编码格式,如使用UTF-8进行编码及接收方的解码等步骤。同时,也提供了一个完整的示例代码来说明如何在发送HTTP请求时处理中文字符。
摘要由CSDN通过智能技术生成

 URL httpurl;
  String str = "username=中国";
  String url = "http://127.0.0.1:8080/login.do";
  try {
   str = URLEncoder.encode(str, "utf-8");
   // 如有中文一定要加上,在接收方用相应字符转码即可
  } catch (UnsupportedEncodingException e1) {
   // TODO Auto-generated catch block
   e1.printStackTrace();
  } 
  HttpURLConnection httpurlconnection = null;
  try {
   httpurl = new URL(url + str);
   httpurlconnection = (HttpURLConnection) httpurl.openConnection();
   httpurlconnection.setDoOutput(true);
   httpurlconnection.setRequestMethod("POST");
   httpurlconnection.setRequestProperty("Content-type", "text/html");
   httpurlconnection.setRequestProperty("Accept-Charset", "utf-8");
   httpurlconnection.setRequestProperty("contentType", "utf-8");
   if (httpurlconnection.getResponseCode() == httpurlconnection.HTTP_OK) {
   }

  } catch (Exception e) {
   e.printStackTrace();
  } finally {
   if (httpurlconnection != null) {
    httpurlconnection.disconnect();
   }
  }

通过网络获取数据时出现的乱码:

String path = "http://。。。";// 实验环境中使用pc的ip,不能用localhost或127.0.0.1
		URL url = new URL(path);
		HttpURLConnection conn = (HttpURLConnection) url.openConnection();
//		conn.setRequestProperty("Accept-Charset", "GBK");
		conn.setRequestProperty("contentType", "GBK");
		conn.setConnectTimeout(5 * 1000);
		conn.setRequestMethod("GET");
		InputStream inStream = conn.getInputStream();
//		readLesoSysXML(inStream);
		
		BufferedReader in = new BufferedReader(new InputStreamReader(inStream, "GBK"));
	    StringBuffer buffer = new StringBuffer();
	    String line = "";
	    while ((line = in.readLine()) != null){
	      buffer.append(line);
	    }
	   String str = buffer.toString();
完满解决!!!

评论 11
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值