Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for MalformedURLException (0.09 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

         *
         * @param   url A URL string
         * @throws  MalformedURLException
         *          If the <code>parent</code> and <code>child</code> parameters
         *          do not follow the prescribed syntax
         */
    
        public SmbFile(final String url) throws MalformedURLException {
            this(new URL(null, url, Handler.SMB_HANDLER));
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

         * @param tc
         *            context to use
         * @throws MalformedURLException if the URL is not properly formatted
         */
        public SmbFile(final URL url, final CIFSContext tc) throws MalformedURLException {
            super(url);
            if (url.getPath() != null && !url.getPath().isEmpty() && url.getPath().charAt(0) != '/') {
                throw new MalformedURLException("Invalid SMB URL: " + url);
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
Back to top