码迷,mamicode.com
首页 > 其他好文 > 详细

J2EE之字符编码输出

时间:2014-06-22 17:16:43      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:j2ee   编码   utf-8   gb2312   

1.

public void doGet(HttpServletRequest request, HttpServletResponse response)
			throws ServletException, IOException {

		print3(response);
	}

	private void print(HttpServletResponse response) throws IOException,
	UnsupportedEncodingException {
		String str = "中国";
		OutputStream out = response.getOutputStream();
		out.write(str.getBytes());
	}

bubuko.com,布布扣

2.

private void print1(HttpServletResponse response) throws IOException,
			UnsupportedEncodingException {
		response.setHeader("content-type", "text/html;charset=UTF-8");
		String str = "中国";
		OutputStream out = response.getOutputStream();
		out.write(str.getBytes("UTF-8"));
	}

bubuko.com,布布扣


3.

private void print2(HttpServletResponse response) throws IOException,
	UnsupportedEncodingException {
		String str = "中国";
		OutputStream out = response.getOutputStream();
		out.write("<meta http-equiv='content-type' content='text/html;charset=UTF-8'>".getBytes());
		out.write(str.getBytes("UTF-8"));
	}

bubuko.com,布布扣bubuko.com,布布扣





J2EE之字符编码输出,布布扣,bubuko.com

J2EE之字符编码输出

标签:j2ee   编码   utf-8   gb2312   

原文地址:http://blog.csdn.net/m631521383/article/details/32315061

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!