ContentType决定浏览器采用何种方式对响应体进行处理
对以下程序实现不同表现效果
protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
String output = "<h1><a href='http://www.baidu.com'><span>百度</span></a></h1>";
response.setContentType("text/html;charset=utf-8");
response.getWriter().println(output);
text/html
html文档
调试页面
text/plain
纯文本
调试页面
text/xml
XML文档
调试页面
application/x-msdownload
下载资源
调试页面