當前位置: 首頁>>代碼示例>>Java>>正文


Java SmbFile.getName方法代碼示例

本文整理匯總了Java中jcifs.smb.SmbFile.getName方法的典型用法代碼示例。如果您正苦於以下問題:Java SmbFile.getName方法的具體用法?Java SmbFile.getName怎麽用?Java SmbFile.getName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在jcifs.smb.SmbFile的用法示例。


在下文中一共展示了SmbFile.getName方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: SmbFile2EncFSFileInfo

import jcifs.smb.SmbFile; //導入方法依賴的package包/類
private EncFSFileInfo SmbFile2EncFSFileInfo(SmbFile smbFile){
	EncFSFileInfo result;
	try {
		String name = smbFile.getName();
		
		//transform parent absolute path into path relative to server path 
		String relativePath=this.getRelativePathFromAbsolutePath(smbFile.getParent());
		
		
		if (name.endsWith("/")) name=name.substring(0,name.length()-1);
		result = new EncFSFileInfo(name,relativePath,smbFile.isDirectory(),smbFile.getLastModified(),smbFile.length(),true,true,true);
		
	} catch (Exception e){
		throw new RuntimeException(e);
	}
	
	return result;
}
 
開發者ID:starn,項目名稱:encdroidMC,代碼行數:19,代碼來源:FileProvider3.java

示例2: main

import jcifs.smb.SmbFile; //導入方法依賴的package包/類
public static void main( String argv[] ) throws Exception {

        SmbFile f = new SmbFile( argv[0] );
        FileInputStream in = new FileInputStream( f.getName() );
        SmbFileOutputStream out = new SmbFileOutputStream( f );

        long t0 = System.currentTimeMillis();

        byte[] b = new byte[8192];
        int n, tot = 0;
        while(( n = in.read( b )) > 0 ) {
            out.write( b, 0, n );
            tot += n;
            System.out.print( '#' );
        }

        long t = System.currentTimeMillis() - t0;

        System.out.println();
        System.out.println( tot + " bytes transfered in " + ( t / 1000 ) + " seconds at " + (( tot / 1000 ) / Math.max( 1, ( t / 1000 ))) + "Kbytes/sec" );

        in.close();
        out.close();
    }
 
開發者ID:codelibs,項目名稱:jcifs,代碼行數:25,代碼來源:Put.java

示例3: main

import jcifs.smb.SmbFile; //導入方法依賴的package包/類
public static void main( String argv[] ) throws Exception {

        SmbFile f = new SmbFile( argv[0] );
        SmbFileInputStream in = new SmbFileInputStream( f );
        FileOutputStream out = new FileOutputStream( f.getName() );

        long t0 = System.currentTimeMillis();

        byte[] b = new byte[8192];
        int n, tot = 0;
        long t1 = t0;
        while(( n = in.read( b )) > 0 ) {
            out.write( b, 0, n );
            tot += n;
            System.out.print( '#' );
        }

        long t = System.currentTimeMillis() - t0;

        System.out.println();
        System.out.println( tot + " bytes transfered in " + ( t / 1000 ) + " seconds at " + (( tot / 1000 ) / Math.max( 1, ( t / 1000 ))) + "Kbytes/sec" );

        in.close();
        out.close();
    }
 
開發者ID:codelibs,項目名稱:jcifs,代碼行數:26,代碼來源:Get.java

示例4: compareTypes

import jcifs.smb.SmbFile; //導入方法依賴的package包/類
protected int compareTypes ( SmbFile f1, String f1name, SmbFile f2 ) throws IOException {
    String f2name, t1, t2;
    int i;

    if ( f1.isDirectory() != f2.isDirectory() ) {
        return f1.isDirectory() ? -1 : 1;
    }
    f2name = f2.getName();
    if ( f1.isDirectory() ) {
        return f1name.compareToIgnoreCase(f2name);
    }
    i = f1name.lastIndexOf('.');
    t1 = i == -1 ? "" : f1name.substring(i + 1);
    i = f2name.lastIndexOf('.');
    t2 = i == -1 ? "" : f2name.substring(i + 1);

    i = t1.compareToIgnoreCase(t2);
    if ( i == 0 ) {
        return f1name.compareToIgnoreCase(f2name);
    }
    return i;
}
 
開發者ID:AgNO3,項目名稱:jcifs-ng,代碼行數:23,代碼來源:NetworkExplorer.java


注:本文中的jcifs.smb.SmbFile.getName方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。