bug–servlet输出中文乱码设置字符集仍然不解决

  • Post author:
  • Post category:其他




问题

servlet输出中文出现乱码,在网页端显示为“???”,按教程设置utf-8仍然是问号



解决

在设置字符集的代码之前不能有getwriter代码

在这里插入图片描述



设置字符集

step1:设置eclipse的字符集

右键项目–property—resousce

在这里插入图片描述

step2:在servlet代码中设置字符集

request.setCharacterEncoding("utf-8"); //1
		response.setContentType("text/html;charset=utf-8");  //2
		response.setCharacterEncoding("utf-8");  //3



版权声明:本文为qw160原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。