文字-字节流-编码

private void test(HttpServletResponse response) throws IOException,
            UnsupportedEncodingException {
        // 在服务器端,用何种编码方式编码,浏览器端也要用何种编码方式编码。
        String data = "中国";

        // 告诉浏览器以某种编码方式打开
        response.setHeader("Content-type", "text/html;charset=UTF-8");
        //response.setContentType("text/html;charset=UTF-8");//这行代码可以替代编码设置的两条命令
        
        //规定response以UTF-8编码
        response.setCharacterEncoding("UTF-8");//UTF-8为国际码,开发通用
        
        PrintWriter out =response.getWriter();
        out.write(data);
        
    }

你可能感兴趣的:(文字-字节流-编码)