本文整理汇总了Java中jcifs.smb.SmbFile.lastModified方法的典型用法代码示例。如果您正苦于以下问题:Java SmbFile.lastModified方法的具体用法?Java SmbFile.lastModified怎么用?Java SmbFile.lastModified使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jcifs.smb.SmbFile
的用法示例。
在下文中一共展示了SmbFile.lastModified方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: SMBFileAttributes
import jcifs.smb.SmbFile; //导入方法依赖的package包/类
/**
* Internal constructor for {@link SMBFileAttributes}.
*
* @param file {@link SmbFile} for which to create the attributes.
* @throws IOException If something goes wrong while accessing the file.
*/
SMBFileAttributes(SmbFile file) throws IOException {
this.attributes = file.getAttributes();
this.created = file.createTime();
this.modified = file.lastModified();
this.length = file.length();
this.code = file.hashCode();
}
示例2: main
import jcifs.smb.SmbFile; //导入方法依赖的package包/类
public static void main( String argv[] ) throws Exception {
SmbFile f = new SmbFile( argv[0] );
Date d = new Date( f.lastModified() );
SimpleDateFormat sdf = new SimpleDateFormat( "EEEE, MMMM d, yyyy h:mm:ss a" );
sdf.setCalendar( new GregorianCalendar() );
System.out.println( sdf.format( d ));
}
示例3: compareDates
import jcifs.smb.SmbFile; //导入方法依赖的package包/类
protected int compareDates ( SmbFile f1, String f1name, SmbFile f2 ) throws IOException {
if ( f1.isDirectory() != f2.isDirectory() ) {
return f1.isDirectory() ? -1 : 1;
}
if ( f1.isDirectory() ) {
return f1name.compareToIgnoreCase(f2.getName());
}
return f1.lastModified() > f2.lastModified() ? -1 : 1;
}