博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
servlet乱码 解决方法 2种方法
阅读量:6248 次
发布时间:2019-06-22

本文共 1875 字,大约阅读时间需要 6 分钟。

 
public class ResponseDemo1 extends HttpServlet {	public  void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {		test1(resp);	}

 

     //方法1:    public void test1(HttpServletResponse resp) throws IOException, UnsupportedEncodingException {        resp.setHeader("Content-type", "text/html;charset=utf-8");        String data = "中国";        OutputStream output = resp.getOutputStream();        //程序以什么编码输出,那么一定要设置浏览为相对应的编码打开.        output.write(data.getBytes("utf-8"));    }  //方法2:    //模拟meta标签,设置charset为utf-8,这个方法也行.    //用html技术中的meta标签模拟了一个http响应头,来控制浏览器的行为    public void test2(HttpServletResponse response) throws Exception{        String data  = "中国_第二个";        OutputStream output= response.getOutputStream();        output.write("
".getBytes()); output.write(data.getBytes()); }

 

public void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { doGet(req, resp); } }

 //********************************情况2:*************************************

public class ResponseDemo2 extends HttpServlet {	private static final long serialVersionUID = 1L;	public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {		test1(response);	}	public void test1(HttpServletResponse response) throws IOException {		// 方法1:		// 要设置response,所使用的码表,以控制reponse以什么码表向浏览器写入数据		// response.setCharacterEncoding("utf-8");		// 同时设置浏览器以何种码表打开,指定浏览以什么 码表打开服务器发送的数据 		// response.setHeader("content-type", "text/html;charset=utf-8");		//  方法2:		response.setContentType("text/html;charset=utf-8");		String data = "中国";		PrintWriter outputStream = response.getWriter();		outputStream.write(data);	}	public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {		doGet(request, response);	}}

 

 

转载地址:http://dzria.baihongyu.com/

你可能感兴趣的文章
ElasticSearch 2 (32) - 信息聚合系列之范围限定
查看>>
windows查看端口占用
查看>>
Yii用ajax实现无刷新检索更新CListView数据
查看>>
App 卸载记录
查看>>
JavaScript变量和作用域
查看>>
开源SIP服务器加密软件NethidPro升级
查看>>
Apache Pulsar中的地域复制,第1篇:概念和功能
查看>>
南京大学周志华教授当选欧洲科学院外籍院士
查看>>
计算机网络与Internet应用
查看>>
linux性能剖析工具
查看>>
Mars说光场(3)— 光场采集
查看>>
Django 文件下载功能
查看>>
Tomcat配置多个域名绑定到不同项目
查看>>
C# MemoryCache GCHandle
查看>>
电子书下载:Building Web Applications with SVG
查看>>
Top 10 Universities for Artificial Intelligence
查看>>
ArcGIS案例学习笔记-聚类点的空间统计特征
查看>>
xBIM 插入复制功能
查看>>
css 温故而知新 select-option 文字方向居右
查看>>
js中的with语句
查看>>