Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Cp850 (0.03 sec)

  1. src/test/java/jcifs/tests/AllTests.java

                }
            });
    
            MUTATIONS.put("noUnicode-cp850", new TestMutation() {
    
                @Override
                public Map<String, String> mutate ( Map<String, String> cfg ) {
                    cfg.put("jcifs.smb.client.maxVersion", "SMB1");
                    cfg.put("jcifs.smb.client.useUnicode", "false");
                    cfg.put("jcifs.encoding", "cp850");
                    return cfg;
                }
            });
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 14.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/Config.java

        /**
         * The static <code>Properties</code>.
         */
    
        private static Properties prp = new Properties();
        private static LogStream log;
        public static String DEFAULT_OEM_ENCODING = "Cp850";
    
        static {
            String filename;
            int level;
            FileInputStream in = null;
    
            log = LogStream.getInstance();
    
            try {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 11.3K bytes
    - Viewed (0)
  3. src/main/java/jcifs/Configuration.java

         * 
         * @return maximum number of sessions on a single connection
         */
        int getSessionLimit ();
    
    
        /**
         * 
         * Property <tt>jcifs.encoding</tt> (string, default <tt>Cp850</tt>)
         * 
         * @return OEM encoding to use
         */
        String getOemEncoding ();
    
    
        /**
         * @return local timezone
         */
        TimeZone getLocalTimezone ();
    
    
        /**
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 18K bytes
    - Viewed (0)
Back to top