Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getResourceAsFileNoException (3.1 sec)

  1. src/main/java/org/codelibs/core/io/ResourceUtil.java

         * @param clazz
         *            The class. Must not be {@literal null}.
         * @return The file.
         * @see #getResourceAsFileNoException(String)
         */
        public static File getResourceAsFileNoException(final Class<?> clazz) {
            assertArgumentNotNull("clazz", clazz);
    
            return getResourceAsFileNoException(getResourcePath(clazz));
        }
    
        /**
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 14.7K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/design/AdminDesignAction.java

            } else if (fessConfig.isSupportedUploadedFile(fileName) || fessConfig.isSupportedUploadedFile(uploadedFileName)) {
                uploadFile = ResourceUtil.getResourceAsFileNoException(fileName);
                if (uploadFile == null) {
                    throwValidationError(messages -> messages.addErrorsDesignFileNameIsNotFound("designFileName"), this::asListHtml);
                    return null;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 17.3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

             * @return The absolute file path of the resource, or null if not found
             */
            protected String getResourcePath(final String path) {
                final File file = ResourceUtil.getResourceAsFileNoException(path);
                if (file != null) {
                    return file.getAbsolutePath();
                }
                return null;
            }
    
            /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 17.2K bytes
    - Viewed (0)
Back to top