- Sort Score
- Num 10 results
- Language All
Results 1 - 3 of 3 for getResourceAsFileNoException (0.09 seconds)
-
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)); } /**Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 14.7K bytes - Click Count (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;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Jan 23 23:57:26 GMT 2026 - 20.1K bytes - Click Count (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; } /**Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Mar 15 08:18:23 GMT 2026 - 18.2K bytes - Click Count (3)