- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for getResourceAsFileNoException (1.22 sec)
-
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: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 14.7K bytes - Viewed (0) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.4K bytes - Viewed (0) -
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: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Fri Nov 28 16:29:12 UTC 2025 - 17.8K bytes - Viewed (3)