本文整理汇总了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;
}
示例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();
}
示例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();
}
示例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;
}