Java.io.FileOutputStream.getChannel()方法實例
java.io.FileOutputStream.getChannel() 方法返回與此文件輸出流關聯的唯一文件通道對象。
聲明
以下是java.io.FileOutputStream.getChannel()方法的聲明:
public FileChannel getChannel()
參數
- NA
返回值
此方法返回與此文件輸出流關聯的文件通道。
異常
- NA
例子
下面的示例演示java.io.FileOutputStream.getChannel()方法的用法。
package com.yiibai; import java.io.FileOutputStream; import java.io.IOException; import java.nio.channels.FileChannel; public class FileOutputStreamDemo { public static void main(String[] args) throws IOException { FileOutputStream fos = null; FileChannel fc = null; long pos; byte b[] = {65, 66, 67, 68, 69}; try{ // create new file output stream fos=new FileOutputStream("C://test.txt"); // write buffer to the output stream fos.write(b); // pushes stream content to the underlying file fos.flush(); // returns file channel associated with this stream fc = fos.getChannel(); // returns the number of bytes written pos = fc.position(); // prints System.out.print(pos); }catch(Exception ex){ // if an error occurs ex.printStackTrace(); }finally{ if(fos!=null) fos.close(); if(fc!=null) fc.close(); } } }
讓我們來編譯和運行上面的程序,這將產生以下結果:
Position: 5