Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for getObject (0.16 sec)

  1. src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java

            final GetObjectArgs args = GetObjectArgs.builder().bucket(fessConfig.getStorageBucket()).object(objectName).build();
            try (InputStream in = createClient(fessConfig).getObject(args)) {
                out.write(in);
            } catch (final Exception e) {
                throw new StorageException("Failed to download " + objectName, e);
            }
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 19.9K bytes
    - Viewed (0)
Back to top