1. 程式人生 > >【meta】標籤可以模擬一個http響應頭

【meta】標籤可以模擬一個http響應頭

//用<meta>  模擬一個http響應頭,控制瀏覽器以UTF-8開啟資料
public void test3(HttpServletResponse response) throws IOException {
String data = "中國";
response.getOutputStream().write("<meta http-equiv='Content-Type' content='text/html;charset=UTF-8'>".getBytes());
OutputStream out = response.getOutputStream();
out.write(data.getBytes("UTF-8"));
}