Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for type (0.12 sec)

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

            byte[] buf = new byte[8192];
            String url, type;
            int n;
    
            try (SmbFileInputStream in = new SmbFileInputStream(file);
                    ServletOutputStream out = resp.getOutputStream()) {
                url = file.getPath();
    
                resp.setContentType( "text/plain" );
    
                if(( n = url.lastIndexOf( '.' )) > 0 &&
                        ( type = url.substring( n + 1 )) != null &&
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 22 03:57:31 GMT 2020
    - 19.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/http/NetworkExplorer.java

                sort = 1;
            }
            else if ( str.equals("type") ) {
                sort = 2;
            }
            else if ( str.equals("date") ) {
                sort = 3;
            }
            dirCount = fileCount = 0;
            maxLen = 28;
            for ( i = 0; i < dirents.length; i++ ) {
                try {
                    if ( dirents[ i ].getType() == SmbConstants.TYPE_NAMED_PIPE ) {
                        continue;
                    }
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 21.3K bytes
    - Viewed (0)
Back to top