描述
這個java.io.FileOutputStream.getChannel()方法返回與此文件輸出流關聯的唯一 FileChannel 對象。
聲明
以下是聲明java.io.FileOutputStream.getChannel()方法≫
public FileChannel getChannel()
參數
NA
返回值
此方法返回與此文件輸出流關聯的文件通道。
異常
NA
示例
下麵的例子展示了 java.io.FileOutputStream.getChannel() 方法的用法。
package com.tutorialspoint;
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
相關用法
- Java Java.io.FileOutputStream.getFD()用法及代碼示例
- Java Java.io.FileOutputStream.close()用法及代碼示例
- Java Java.io.FileOutputStream.finalize()用法及代碼示例
- Java Java.io.FileOutputStream.write()用法及代碼示例
- Java Java.io.File.canExecute()用法及代碼示例
- Java Java.io.File.listFiles()用法及代碼示例
- Java Java.io.File.exists()用法及代碼示例
- Java Java.io.File.listRoots()用法及代碼示例
- Java Java.io.File.setReadable()用法及代碼示例
- Java Java.io.File.mkdirs()用法及代碼示例
- Java Java.io.File.compareTo()用法及代碼示例
- Java Java.io.FileInputStream.read()用法及代碼示例
- Java Java.io.File.isFile()用法及代碼示例
- Java Java.io.File.getCanonicalPath()用法及代碼示例
- Java Java.io.File.toString()用法及代碼示例
- Java Java.io.FileInputStream.finalize()用法及代碼示例
- Java Java.io.File.canWrite()用法及代碼示例
- Java Java.io.File.getUsableSpace()用法及代碼示例
- Java Java.io.File.getName()用法及代碼示例
- Java Java.io.FilePermission.getActions()用法及代碼示例
注:本文由純淨天空篩選整理自 Java.io.FileOutputStream.getChannel() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。