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

📄 writesomebytes.java

📁 IBM JAVA NIO培训资料,有很好的实例
💻 JAVA
字号:
// $Id$import java.io.*;import java.nio.*;import java.nio.channels.*;public class WriteSomeBytes{  static private final byte message[] = { 83, 111, 109, 101, 32,                                          98, 121, 116, 101, 115, 46 };  static public void main( String args[] ) throws Exception {    FileOutputStream fout = new FileOutputStream( "writesomebytes.txt" );    FileChannel fc = fout.getChannel();    ByteBuffer buffer = ByteBuffer.allocate( 1024 );    for (int i=0; i<message.length; ++i) {      buffer.put( message[i] );    }    buffer.flip();    fc.write( buffer );    fout.close();  }}

⌨️ 快捷键说明

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