A: request.setCharacterEncoding("utf-8")
B: response.setContentType("text/html;charset=utf-8")
C: Stringname=newString(request.getParameter("name").getBytes("ISO-8859-1"),"gbk")
D: response.setCharacterEncoding("gbk")
举一反三
- 使用GET方式提交数据,接收数据时,处理中文最直接有效方式为()。 A: Arequest.setCharacterEncoding("utf-8") B: Bresponse.setContentType("text/html;charset=utf-8") C: CStringname=newString(request.getParameter("name").getBytes("ISO-8859-1"),"gbk") D: Dresponse.setCharacterEncoding("gbk")
- 使用GET方式提交数据,接收数据时,处理中文最直接有效方式为( )。 A: String name=new String(request.getParameter('name').getBytes('ISO-8859-1'),'gbk'); B: request.setCharacterEncoding('utf-8'); C: response.setContentType('text/html;charset=utf-8'); D: response.setCharacterEncoding('gbk');
- 用户使用POST方式提交的数据中存在汉字(使用utf-8字符集),在Servlet中需要使用下述______语句处理。 A: request.setCharacterEncoding("utf-8); B: request.setContentType("text/html;charset=utf-8"); C: response.setCharacterEncoding("utf-8"); D: response.setContentType("text/html;charset=utf-8");
- Servlet中通过request.getParameter()方法提取客户端通过post方式提交的数据时出现中文乱码,可以通过以下哪个方法解决?( ) A: request.setCharacterEncoding("iso-8859-1"); B: request.setCharacterEncoding("utf-8"); C: response.setCharacterEncoding("iso-8859-1"); D: response.setCharacterEncoding("utf-8");
- 在jsp中如果表单的提交方式是post,下列处理中文乱码正确的方式是( ) A: request.setCharacterEncoding(“utf-8”) B: request.setCharacter(“utf-8”) C: request.setContentType(“text/html;charset=utf-8”) D: response.setContentType(“text/html;charset=utf-8”)
内容
- 0
用户使用POST方式提交的数据中存在汉字(使用utf-8字符集),在Servlet中需要使用下述______语句处理。 A: response.setCharacterEncoding("utf-8"); B: request.setCharacterEncoding("utf-8); C: response.setContentType("text/html;charset=utf-8"); D: request.setContentType("text/html;charset=utf-8");
- 1
在JSP中,假设表单的method="post",在发送请求时中文乱码处理的正确做法是( )。 A: request.setCharacterEncoding("utf-8"); B: response.setCharacter("utf-8"); C: request.setContentType("text/html;charset=utf-8"); D: response.setContentType("text/html;charset=utf-8");
- 2
下列request和response内置对象的使用正确的是()A.request.getRequestDispatcher(“index.jsp”).forward();B.response.sendRedirect(“index.jsp”);C.request.getParameterValues(“name”);D.response.setContentType(“text/html;charset=gbk”);
- 3
当request对象获取客户端提交的中文字符时,会出现乱码问题,应该通过setCharacterEncoding设置编码方式为UTF-8
- 4
通过 response对象的setContentType()方法可以为响应设置内容类型 。比如"text/html;charset=utf-8"。