本文整理匯總了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;
}