用户使用POST方式提交的数据中存在汉字(使用utf-8字符集),在Servlet中需要使用下述()语句处理。
用户使用POST方式提交的数据中存在汉字(使用utf-8字符集),在Servlet中需要使用下述()语句处理。
A.request.setContentType("text/html charset=utf-8")
B.request.setCharacterEncoding("utf-8)
C.response.setCharacterEncoding("utf-8")
D.response.setContentType("text/html charset=utf-8")
正确答案:request.setCharacterEncoding("utf-8)