- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for encodingRules (0.13 sec)
-
src/main/webapp/WEB-INF/web.xml
<init-param> <param-name>encoding</param-name> <param-value>UTF-8</param-value> </init-param> <init-param> <param-name>encodingRules</param-name> <param-value>sjis:Shift_JIS,eucjp:EUC-JP</param-value> </init-param> </filter> <filter> <filter-name>corsFilter</filter-name>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Mon Jul 29 02:54:01 UTC 2024 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/filter/EncodingFilter.java
import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; public class EncodingFilter implements Filter { public static final String ENCODING_MAP = "encodingRules"; protected Map<String, String> encodingMap = new ConcurrentHashMap<>(); protected String encoding; protected ServletContext servletContext; protected URLCodec urlCodec = new URLCodec();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 6.9K bytes - Viewed (0)