Java.io.RandomAccessFile.getChannel() 方法
描述
java.io.RandomAccessFile.getChannel() 方法返回与该文件关联的唯一 FileChannel 对象。
声明
以下是 java.io.RandomAccessFile.getChannel() 方法的声明。
public final FileChannel getChannel()
参数
NA
返回值
该方法返回与该文件关联的文件通道。
异常
NA
示例
下面的例子展示了 java.io.RandomAccessFile.getChannel() 方法的使用。
package com.tutorialspoint; import java.io.*; public class RandomAccessFileDemo { public static void main(String[] args) { try { // create a new RandomAccessFile with filename test RandomAccessFile raf = new RandomAccessFile("c:/test.txt", "rw"); // write something in the file raf.writeUTF("Hello World"); // set the file pointer at 0 position raf.seek(0); // read and print the contents of the file System.out.println("" + raf.readUTF()); // return the channel of the file System.out.println("" + raf.getChannel()); // close the strea and release resources raf.close(); } catch (IOException ex) { ex.printStackTrace(); } } }
假设我们有一个文本文件c:/test.txt,其内容如下。 该文件将用作我们示例程序的输入 −
ABCDE
让我们编译并运行上面的程序,这将产生下面的结果 −
Hello World sun.nio.ch.FileChannelImpl@3d4b7453