Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getUrlDecoder (0.5 sec)

  1. src/test/java/org/codelibs/fess/helper/SearchHelperTest.java

                    new RequestParameter("lang", new String[] { "en", "ja" }) };
            String encoded = searchHelper.serializeParameters(params);
            assertNotNull(encoded);
            byte[] compressed = Base64.getUrlDecoder().decode(encoded);
            byte[] jsonBytes = searchHelper.gzipDecompress(compressed);
            String json = new String(jsonBytes);
            assertTrue(json.contains("q"));
            assertTrue(json.contains("lang"));
        }
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/DocumentHelper.java

        public String decodeSimilarDocHash(final String hash) {
            if (hash != null && hash.startsWith(SIMILAR_DOC_HASH_PREFIX) && hash.length() > SIMILAR_DOC_HASH_PREFIX.length()) {
                final byte[] decode = Base64.getUrlDecoder().decode(hash.substring(SIMILAR_DOC_HASH_PREFIX.length()));
                try (BufferedReader reader =
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/scheduler/AdminSchedulerAction.java

                    scheduledJobForm.available = Constants.ON;
                    scheduledJobForm.cronExpression = null;
                    final String decodedName = new String(Base64.getUrlDecoder().decode(name), Constants.CHARSET_UTF_8);
                    scheduledJobForm.name = MessageFormat.format(fessConfig.getJobTemplateTitle(type), decodedName);
                    final String[] ids = { "", "", "" };
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 22.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/SearchHelper.java

                        if (cookieName.equals(cookie.getName())) {
                            try {
                                final String encoded = cookie.getValue();
                                final byte[] compressed = Base64.getUrlDecoder().decode(encoded);
                                final byte[] jsonBytes = gzipDecompress(compressed);
                                final List<?> list = mapper.readValue(jsonBytes, List.class);
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 35.8K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

         * @return the decoded object name
         */
        protected static String decodeId(final String id) {
            if (id == null) {
                return StringUtil.EMPTY;
            }
            return new String(Base64.getUrlDecoder().decode(id.getBytes(Constants.UTF_8_CHARSET)), Constants.UTF_8_CHARSET);
        }
    
        private HtmlResponse asListHtml(final String path) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 25.1K bytes
    - Viewed (0)
Back to top