J2EE之字符编码输出

时间:2014-06-22 17:16:43   收藏:0   阅读:175

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

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!