setContentType() 方法

response的setContentType() 方法用于设置发送到客户端的响应的内容类型

参数类型有以下几种:

text/html  ,  text/plain  ,  application/msword等

例如:

setContentType(“text/html;charset=UTF-8”);   响应类型为HTML格式的

setContentType(“text/plain;charset=UTF-8”);  响应类型为文本格式的

setContentType(“application/msword;charset=UTF-8”);  响应类型为word格式的

该方法要在getWriter()方法之前使用,这样响应的字符编码将从给出的内容类型中设置,否则,将不会响应设置的字符编码

你可能感兴趣的:(html)