Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for downloadObject (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

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

         */
        public static void downloadObject(final String objectName, final org.lastaflute.web.servlet.request.stream.WrittenStreamOut out) {
            try (final StorageClient client = StorageClientFactory.createClient()) {
                final ByteArrayOutputStream baos = new ByteArrayOutputStream();
                client.downloadObject(objectName, baos);
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 22.1K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/storage/GcsStorageClient.java

            } catch (final Exception e) {
                throw new StorageException("Failed to upload " + objectName, e);
            }
        }
    
        @Override
        public void downloadObject(final String objectName, final OutputStream outputStream) {
            try {
                final Blob blob = storage.get(BlobId.of(bucket, objectName));
                if (blob == null) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 10.3K bytes
    - Click Count (0)
Back to Top