All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.houbbbbb.sso.util.RequestUtil Maven / Gradle / Ivy

The newest version!
package com.github.houbbbbb.sso.util;

import javax.servlet.http.HttpServletRequest;

/**
 * @author : hbw
 * @desctiption :
 * @date : 2020-05-25 13:45
 */
public class RequestUtil {
    private static final HTMLFilter htmlFilter = new HTMLFilter();

    public static String getParam(HttpServletRequest request, String name){
        String result = request.getParameter(name);
        if(null!=result) {
            return htmlFilter.filter(result);
        }else{
            return null;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy