- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for isUrlChar (0.04 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 15.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/SystemHelper.java
try { final StringBuilder buf = new StringBuilder(path.length() + 100); for (int i = 0; i < path.length(); i++) { final char c = path.charAt(i); if (CharUtil.isUrlChar(c) || c == '^' || c == '{' || c == '}' || c == '|' || c == '\\') { buf.append(c); } else { buf.append(URLEncoder.encode(String.valueOf(c), filterPathEncoding));
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 36.6K bytes - Viewed (0)