Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for exportCsv (0.04 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/general/EditForm.java

         * When enabled, frequently searched terms are tracked and displayed.
         */
        @Size(max = 10)
        public String popularWord;
    
        /**
         * Character encoding to use for CSV file exports.
         * This setting affects the encoding of downloaded CSV files.
         */
        @Required
        @Size(max = 20)
        public String csvFileEncoding;
    
        /**
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 15.8K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/job/IndexExportJob.java

                logger.warn("Failed to export documents.", e);
                resultBuf.append(e.getMessage()).append("\n");
            }
    
            return resultBuf.toString();
        }
    
        /**
         * Exports a single document as a file.
         *
         * @param source the document source map
         * @param exportPath the base export directory path
         * @param excludeFields the set of field names to exclude from output
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 10.8K bytes
    - Click Count (0)
Back to Top