⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 copyfile.java

📁 IBM JAVA NIO培训资料,有很好的实例
💻 JAVA
字号:
// $Id$import java.io.*;import java.nio.*;import java.nio.channels.*;public class CopyFile{  static public void main( String args[] ) throws Exception {    if (args.length<2) {      System.err.println( "Usage: java CopyFile infile outfile" );      System.exit( 1 );    }    String infile = args[0];    String outfile = args[1];    FileInputStream fin = new FileInputStream( infile );    FileOutputStream fout = new FileOutputStream( outfile );    FileChannel fcin = fin.getChannel();    FileChannel fcout = fout.getChannel();    ByteBuffer buffer = ByteBuffer.allocate( 1024 );    while (true) {      buffer.clear();      int r = fcin.read( buffer );      if (r==-1) {        break;      }      buffer.flip();      fcout.write( buffer );    }  }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -