• 大小: 716KB
    文件类型: .7z
    金币: 1
    下载: 0 次
    发布日期: 2021-06-18
  • 语言: 其他
  • 标签: web  聊天  

资源简介

基于web的在线聊天系统源码,MVC框架设计开发,可用作毕业设计,课程设计。

资源截图

代码片段和文件信息

/*
 * To change this template choose Tools | Templates
 * and open the template in the editor.
 */

package com.wgh.filter;


import java.io.IOException;

import javax.servlet.*;



public class CharacterEncodingFilter implements Filter{

  
  protected String encoding = null;
   
 protected FilterConfig filterConfig = null;

 
   public void init(FilterConfig filterConfig) 
throws ServletException {
       
       this.filterConfig = filterConfig;
  
      this.encoding = filterConfig.getInitParameter(“encoding“);
   
 }

  
  public void doFilter(ServletRequest request ServletResponse response FilterChain chain) throws IOException 
ServletException {
    
    if (encoding != null) {
  
          request.setCharacterEncoding(encoding);
  
          response.setContentType(“text/html; charset=“+encoding);
    
    }
        
chain.doFilter(request response);
  
  }

   
 public void destroy() {
 
       this.encoding = null;
  
      this.filterConfig = null;
   
 }

}

评论

共有 条评论