Java-io-fileoutputstream-getchannel

提供:Dev Guides
移動先:案内検索

Java.io.FileOutputStream.getChannel()メソッド

説明

  • java.io.FileOutputStream.getChannel()*メソッドは、このファイル出力ストリームに関連付けられた一意のFileChannelオブジェクトを返します。

宣言

以下は* java.io.FileOutputStream.getChannel()*メソッドの宣言です-

public FileChannel getChannel()

パラメーター

NA

戻り値

このメソッドは、このファイル出力ストリームに関連付けられたファイルチャネルを返します。

例外

NA

次の例は、java.io.FileOutputStream.getChannel()メソッドの使用法を示しています。

package com.finddevguides;

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