本文整理汇总了Java中jcifs.smb.SmbFileOutputStream.write方法的典型用法代码示例。如果您正苦于以下问题:Java SmbFileOutputStream.write方法的具体用法?Java SmbFileOutputStream.write怎么用?Java SmbFileOutputStream.write使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类jcifs.smb.SmbFileOutputStream
的用法示例。
在下文中一共展示了SmbFileOutputStream.write方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: main
import jcifs.smb.SmbFileOutputStream; //导入方法依赖的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();
}
示例2: main
import jcifs.smb.SmbFileOutputStream; //导入方法依赖的package包/类
public static void main( String argv[] ) throws Exception {
SmbFile f = new SmbFile( argv[0] );
SmbFileOutputStream out = new SmbFileOutputStream( f, true );
byte[] msg;
int i = 0;
while( i++ < 3 ) {
msg = new String( "this is msg #" + i ).getBytes();
out.write( msg );
System.out.write( msg );
Thread.sleep( 10000 );
//out = new SmbFileOutputStream( f, true );
}
out.close();
}
示例3: main
import jcifs.smb.SmbFileOutputStream; //导入方法依赖的package包/类
public static void main( String argv[] ) throws Exception {
SmbFileOutputStream out = new SmbFileOutputStream( argv[0] );
for( int i = 0; i < 2; i++ ) {
out.write( (new String( "hello" + i )).getBytes() );
Thread.sleep( 17000 );
}
out.close();
}