Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ISO8859_1 (0.34 sec)

  1. src/main/java/jcifs/http/NetworkExplorer.java

                    try (InputStream is = getClass().getClassLoader().getResourceAsStream("jcifs/http/ne.css");) {
                        while ((n = is.read(buf)) != -1) {
                            sb.append(new String(buf, 0, n, "ISO8859_1"));
                        }
                        this.style = sb.toString();
                    }
                } catch (final IOException ioe) {
                    throw new ServletException(ioe.getMessage());
                }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 23.4K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/http/NetworkExplorer.java

                mimeMap = new MimeMap();
                is = getClass().getClassLoader().getResourceAsStream("jcifs/smb1/http/ne.css");
                while ((n = is.read(buf)) != -1) {
                    sb.append(new String(buf, 0, n, "ISO8859_1"));
                }
                style = sb.toString();
            } catch (final IOException ioe) {
                throw new ServletException(ioe.getMessage());
            }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 22.6K bytes
    - Viewed (0)
Back to top