Servlet中response.getOutputStream() 默认编码是gb2312

 

Servlet中response.getOutputStream() 默认编码是gb2312

分类: java   1057人阅读  评论(0)  收藏  举报
[java]  view plain copy
  1. package info.dyndns.oszc;  
  2.   
  3. import java.io.IOException;  
  4. import java.io.OutputStream;  
  5. import java.io.PrintWriter;  
  6. import java.util.Date;  
  7.   
  8. import javax.servlet.ServletException;  
  9. import javax.servlet.http.Cookie;  
  10. import javax.servlet.http.HttpServlet;  
  11. import javax.servlet.http.HttpServletRequest;  
  12. import javax.servlet.http.HttpServletResponse;  
  13.   
  14. public class CookieDemo1 extends HttpServlet {  
  15.   
  16.     public void doGet(HttpServletRequest request, HttpServletResponse response)  
  17.             throws ServletException, IOException {  
  18.   
  19. Cookie[] cookies = request.getCookies();  
  20.           
  21.         boolean visited = false;  
  22.           
  23.         response.setContentType("text/html;charset=UTF-8"); //设置头文件编码是UTF-8,浏览器用utf-8解码  
  24.         OutputStream out = response.getOutputStream();  //response.getOutputStream()默认编码是gb2312  
  25.         for (int i=0; cookies !=null && i<cookies.length ; i++)  
  26.         {  
  27.             if (cookies[i].getName().equals("lastVisit"))  
  28.             {  
  29.                 visited = true;  
  30.                 out.write("您上次访问的时间为:".getBytes());   
  31.                 //用gb2312写入,显然会出现乱码,所以要修改为out.write("您上次访问的时间为:".getBytes("UTF-8"));   
  32.                 String lastVisit =cookies[i].getValue();  
  33.                 Date date =new Date( Long.parseLong(lastVisit) );  
  34.                 out.write(date.toLocaleString().getBytes());  
  35.             }  
  36.         }  
  37.         if (!visited)  
  38.         {  
  39.             out.write("第一次访问本网站!".getBytes());//也会出现乱码,修改方法如上  
  40.         }  
  41.           
  42.         Cookie cookie = new Cookie("lastVisit", System.currentTimeMillis()+"");  
  43.         cookie.setMaxAge(1*60*60); //持续一个小时  
  44.         cookie.setPath("/day07");  
  45.         response.addCookie(cookie);  
  46.     }  
  47.   
  48.     public void doPost(HttpServletRequest request, HttpServletResponse response)  
  49.             throws ServletException, IOException {  
  50.   
  51.     }  
  52.   
  53. }  
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值