Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for defaultCharset (0.16 sec)

  1. src/main/java/org/codelibs/core/io/PropertiesUtil.java

         * @param file
         *            File. Must not be {@literal null}.
         */
        public static void load(final Properties props, final File file) {
            load(props, file, Charset.defaultCharset().name());
        }
    
        /**
         * Loads the specified {@link URL} into the {@link Properties} (wraps exception handling).
         *
         * @param props
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 7.9K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/Constants.java

         */
        public static final String FEATURE_EXTERNAL_PARAMETER_ENTITIES = "http://xml.org/sax/features/external-parameter-entities";
    
        static {
            DEFAULT_CHARSET = Charset.defaultCharset();
        }
    
        /**
         * Private constructor to prevent instantiation of this class.
         */
        private Constants() {
        }
    
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/io/FileUtil.java

         * @return The text read from the file.
         */
        public static String readText(final String path) {
            assertArgumentNotEmpty("path", path);
            return readText(path, Charset.defaultCharset().name());
        }
    
        /**
         * Reads text from a file using the default encoding.
         *
         * @param file
         *            The file. Must not be {@literal null}.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/netbios/Name.java

        private static final String DEFAULT_SCOPE = Config.getProperty("jcifs.smb1.netbios.scope");
    
        static final String OEM_ENCODING = Config.getProperty("jcifs.smb1.encoding", Charset.defaultCharset().displayName());
    
        /** The NetBIOS name (up to 15 characters) */
        public String name;
        /** The NetBIOS scope identifier */
        public String scope;
        /** The NetBIOS name type/suffix (hexadecimal code) */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 7.2K bytes
    - Viewed (0)
Back to top