博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
J2EE之字符编码输出
阅读量:6242 次
发布时间:2019-06-22

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

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());	}

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"));	}

3.

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


你可能感兴趣的文章
乘法逆元(转)
查看>>
android repo库的创建及代码管理
查看>>
tomcat 配置
查看>>
Cloudera Certified Associate Administrator案例之Configure篇
查看>>
QTP完全卸载
查看>>
【跨域】#001 JSONP原理解析【总结】
查看>>
Linux下mysql的安装和配置
查看>>
Scrum 项目 4.0-5.0-约教网站开发(一)
查看>>
CSS3变形transform 2D初级了解
查看>>
uva 11806 Cheerleaders (容斥)
查看>>
[HAOI2012]音量调节
查看>>
week07 codelab02 C72
查看>>
ubuntu系统备份与还原
查看>>
人无股权不富
查看>>
JavaScript屏蔽Backspace键
查看>>
dom4j的安装
查看>>
graphical Layout调大一点
查看>>
Python中使用lambda函数
查看>>
句柄类的应用中减少重复编译的方法
查看>>
dj cookie与session 2
查看>>