HttpClient_002_中文乱码、HttpClient中文乱码透析、总结
中文乱码原理代码:
String s = "中文";
byte[] bs2 = s.getBytes("utf-8");//将s拆成:utf-8个体,注:utf-8指s原本就是utf-8
String s1 = new String(bs2,"iso-8859-1");//将bs2组装成:iso-8859-1串
String s2 = new String(bs2,"utf-8");//将bs2组装成:utf-8串
String s3 = new String(s1.getBytes("iso-8859-1"),"utf-8");//将s1拆成iso-8859-1串,然后组装成utf-8
System.out.println(s1+"\n"+s2+"\n"+s3);
结果:
??????
中文
中文
实例源码下载:http://download.csdn.net/detail/poiuy1991719/8594485
解决HttpClient中文乱码,项目演示:
1:编写httpClient_001
所需包:

1、1:编写URLUtil类
package com.west.test.httpclient;
public class URLUtil {
public static final String HttpClient_002="http://localhost:8080/httpClient_002/";//访问本地项目2路径
public static final String POST_CONTENT=HttpClient_002+"PostContent";
}
1、2:编写Servlet类
package com.west.test.httpclient; import java.io.IOException;
import java.io.PrintWriter;
import java.io.UnsupportedEncodingException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import org.apache.commons.httpclient.HttpClient;
import org.apache.commons.httpclient.HttpStatus;
import org.apache.commons.httpclient.NameValuePair;
import org.apache.commons.httpclient.methods.PostMethod;
import javax.servlet.ServletException; public class PostServlet extends HttpServlet {
@Override
protected void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
System.out.println("========httpClient_001 PostServlet start=========");
System.out.println("httpClient_001:doPost方式提交");
HttpClient httpClient = new HttpClient();
PostMethod method = new PostMethod(URLUtil.POST_CONTENT);
// 解决中文乱码(设置:"我方"HttpClient提交、解析所用码)
method.getParams().setContentCharset("utf-8"); String charset=method.getParams().getContentCharset();
NameValuePair name = new NameValuePair("name", "张三");
NameValuePair password = new NameValuePair("password",
"password:123321");
method.setRequestBody(new NameValuePair[] { name, password });
String rt = "";
try {
int status = httpClient.executeMethod(method);
if (status == HttpStatus.SC_OK) {
rt = method.getResponseBodyAsString();
System.out.println("httpClient_001得到:" + rt);
codeTest(rt,charset);
}
} catch (Exception e) {
e.printStackTrace();
System.out.println("网络连接失败,请联系管理员!");
}
// 释放HttpClient资源
method.releaseConnection();
outMessage(response, rt); } protected void doGet(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
System.out.println("httpClient_001:doGet方式提交");
doPost(request, response); } public void outMessage(HttpServletResponse response, String message) {
try {
// 解决"界面"中文乱码(设置:"我方"提交所用码、"对方"解析所用码)
response.setContentType("text/html;charset=utf-8");
PrintWriter out = response.getWriter();
out.print(message);
out.close();
} catch (IOException e) {
e.printStackTrace();
}
} public void codeTest(String rt ,String charset) throws Exception { System.out.println("得到的是:"+charset);
byte[] btr=rt.getBytes(charset);
String rt01 = new String(btr, "iso-8859-1");
System.out.println("String(btr,'iso-8859-1')转码01:" + rt01);
String rt02 = new String(btr, "utf-8");
System.out.println("String(btr,'utf-8')转码02:" + rt02);
String rt03 = new String(rt01.getBytes("iso-8859-1"), "utf-8");
System.out.println(rt03); }
}
1.3:配置web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<display-name>test</display-name> <servlet>
<servlet-name>PostServlet</servlet-name>
<servlet-class>com.west.test.httpclient.PostServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>PostServlet</servlet-name>
<url-pattern>/PostServlet</url-pattern>
</servlet-mapping> <session-config>
<session-timeout></session-timeout>
</session-config>
<welcome-file-list>
<welcome-file>index.jsp</welcome-file>
</welcome-file-list>
</web-app>
1、3:编写界面:index.jsp
<%@ page language="java" import="java.util.*" pageEncoding="UTF-8"%>
<html>
<head>
<title>test</title>
</head>
<body>
<form action="PostServlet" method="post">
<input type="submit" value="Post提交">
</form>
</body>
</html>
2:编写项目:httpClient_002
2、1:编写Servlet类
package com.test.servlet; import java.io.IOException;
import java.io.PrintWriter; import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse; public class PostContent extends HttpServlet {
@Override
protected void doPost(HttpServletRequest request,
HttpServletResponse response) throws ServletException, IOException {
System.out.println("=========httpClient_002 PostContent start============");
System.out.println("httpClient_002:doPost方式执行");
// 解决中文乱码(设置:"我方"解析所用码)
request.setCharacterEncoding("utf-8"); String name = request.getParameter("name");
String password = request.getParameter("password");
System.out.println("httpClient_002得到:{name:" + name+",password:"+password+"}");
String reStr = "{name=" + name + ",password="
+ password+"}";
outMessage(response, reStr);
} public void outMessage(HttpServletResponse response, Object message) {
try {
// 解决中文乱码(设置:"我方"提交所用码,"httpClient_001"解析所用码)
response.setContentType("text/html;charset=utf-8"); PrintWriter out = response.getWriter();
out.print(message);
out.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
2.2:配置web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="2.5"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<display-name>test002</display-name> <servlet>
<servlet-name>PostContent</servlet-name>
<servlet-class>com.test.servlet.PostContent</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>PostContent</servlet-name>
<url-pattern>/PostContent</url-pattern>
</servlet-mapping> <welcome-file-list>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
</welcome-file-list>
</web-app>
3:总结
1、解决中文乱码(设置:"我方"HttpClient提交、解析所用码)
method.getParams().setContentCharset("utf-8"); 2、解决"界面"中文乱码(设置:"我方"提交所用码、"对方"解析所用码)
response.setContentType("text/html;charset=utf-8"); 3、解决中文乱码(设置:"我方"解析所用码)
request.setCharacterEncoding("utf-8"); 4、解决中文乱码(设置:"我方"提交所用码、"httpClient_001"解析所用码),同2
response.setContentType("text/html;charset=utf-8");
附加:
请求网页、servlet:
GetMethod getMethod = new GetMethod("http://www.baidu.com");
//(1)、这里可以设置自己想要的编码格式
getMethod.getParams().setContentCharset("utf-8");
//(2)、对于get方法也可以这样设置
getMethod.getParams().setParameter(HttpMethodParams.HTTP_CONTENT_CHARSET,"GB2312");
//(3)、还可以如下这样设置
getMethod.addRequestHeader("Content-Type", "text/html; charset=UTF-8");
//(4)、当然同样可以直接设置 httpClient 对象的编码格式
HttpClient httpClient = new HttpClient();
httpClient.getParams().setContentCharset("utf-8");
//使用流的方式读取也可以如下设置
InputStream in = getMethod.getResponseBodyAsStream();
//这里的编码规则要与上面的相对应
BufferedReader br = new BufferedReader(new InputStreamReader(in,"utf-8"));
请求方法、servlet:
PostMethod PostMethod= new PostMethod("http://localhost:8080/ezid-cert-mobile/upload");
//(1)、通常可以如下设置自己想要的编码格式
postMethod.getParams().setParameter(HttpMethodParams.HTTP_CONTENT_CHARSET,"utf-8");
//(2)、也重载PostMethod的getRequestCharSet()方法
public class UTF8PostMethod extends PostMethod{
public UTF8PostMethod(String url){
super(url);
}
@Override
public String getRequestCharSet() {
return "UTF-8";
}
}
//(3)、如果是方法的参数出现乱码问题,那么你可以如下设置参数
Charset utf8Charset = Charset.forName("UTF-8");
multipartContent.addPart("name", new StringBody(Info.getUserEntity().getName(), utf8Charset));
//(4)、如果你用的是Part [] parts={...}传参方式的话可以如下设置
StringPart name=new StringPart("name",certFormEntity.getPersonName(), "UTF-8");
HttpClient_002_中文乱码、HttpClient中文乱码透析、总结的更多相关文章
- Firebug中调试中的js脚本中中文内容显示为乱码
Firebug中调试中的js脚本中中文内容显示为乱码 设置 页面 UFT-8 编码没用, 解决方法:点击 "Firebug"工具栏 中的"选项"---" ...
- wkhtmltopdf中文显示空白或者乱码方框
中文乱码或者空白解决方法 如果wkhtmltopdf中文显示空白或者乱码方框 打开windows c:\Windows\fonts\simsun.ttc拷贝到linux服务器/usr/share/fo ...
- ASP.NET开发在JavaScript有中文汉字时出现乱码时简单有效的解决
一般情况在使用ASP.NET开发使用JavaScript有中文汉字时不会出现乱码情况,比如:alert('您看到我了吗?');这样直接输入中文汉字的代码中是不会出现乱码的,如果出现了,一是检查Web. ...
- .net文件压缩和解压及中文文件夹名称乱码问题
/**************************注释区域内为引用http://www.cnblogs.com/zhaozhan/archive/2012/05/28/2520701.html的博 ...
- windows mysql 中文乱码和中文录入提示太大错误的解决方法
今天操作mysql的时候很郁闷,因为修改默认字符集搞了半天,终于弄成了(关于如何把windows的默认字符集设置成功,可以参看另一篇博文,最终在mysql中输入show variables like ...
- php生成的中文文件名会变成乱码,应该这样解决
现在php有很多类库,会生成文件,比如生成zip文件,生成二维码等等.这些类库用起来很爽,但是一旦生成带有中文的文件名,极有可能出现乱码. 问题:生成的中文文件名会变成乱码 解决:使用函数:iconv ...
- DWZ 框架remote 验证字段唯一性方法提交后台,如果是中文会显示成乱码问题
关于jquery remote 验证字段唯一性方法提交后台,如果是中文会显示成乱码问题.可以直接修改tomcat 配置文件server.xml 设置 URIEncoding=utf-8属性,将ge ...
- Cocos2d—X游戏开发之VS2010 控制台输出中文,模拟器中文乱码问题解决
首先,先解决第一个问题,我们使用VS2010开发的时候,调试的时候,中文打印出来都是乱码,这个问题很纠结. 如下图: CCLOG("cclog: 测试使用标签的自动换行和个别字体大写&quo ...
- 【原创】python中文编码问题深入分析(二):print打印中文异常及显示乱码问题分析与解决
在学习python以及在使用python进行项目开发的过程中,经常会使用print语句打印一些调试信息,这些调试信息中往往会包含中文,如果你使用python版本是python2.7,或许你也会遇到和我 ...
随机推荐
- Hibernate4Maven
How to create a Maven project with Hibernate libs? This blog will be a demo to describe this issue. ...
- js获取屏幕大小
1.js获取屏幕大小 <html> <script> function a(){ document.write( "屏幕分辨率为:"+screen.widt ...
- 创建 maven 本地仓库
在 pom.xml 添加依赖包的时候,有时候会提示无法从 http://repo1.maven.org/maven2/ 获取的情况,这时可配置个本地仓库: 从网上下载 maven 仓库网站源码包 Ne ...
- EasyUI组件(窗口组件)
注意首先要在title后面导入配置文件,前后顺序不能乱 <!-- 1.jQuery的js包 --><script type="text/javascript" s ...
- Daily Scrum 10.24
昨天我们的工作已经全面开始了,本来想等今天(25号)看那个燃尽图和燃速图能不能出来,结果还是没有,就先把我们的Task统计贴上来吧. 今天的Task统计: 至于燃尽图和燃速图的问题已经发老师邮件提问了 ...
- SQL servcer 时间日期函数、数据类型转换
1.时间日期函数 2.数据类型转换 3.习题 建立两个表,一个部门表,一个人员表.部门:部门的编号,部门的名称,部门的职责.人员:人员的编号,姓名,年龄,性别,cid所属部门
- c# 递归
递归 函数体内调用自身函数,直到符合某一条件时不再继续调用两个需要满足的条件1.有反复调用自身函数的过程2.有函数的出口,有不再继续执行的条件 练习: 1.用递归函数做n的阶乘. 2.一群羊赶到村庄去 ...
- 在cenOS下安装apache出现-bash: /etc/init.d/httpd: 没有那个文件或目录
我是在vmware上装的centos7,使用命令yum install httpd httpd-devel 安装完apache后,想要启动apache,执行了/etc/init.d/httpd sta ...
- 数据结构 C++ 单链表 一元多项式的相加
#include <iostream> using namespace std; struct Node { double coe; //系数 int exp; //指数 Node *ne ...
- shell 常用正则
shell常用正则表达式 “^\d+$” //非负整数(正整数 + 0) “^[0-9]*[1-9][0-9]*$” //正整数 “^((-\d+)|(0+))$” //非正整数(负整数 ...