博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Java FileInputStream getChannel()方法与示例
阅读量:2527 次
发布时间:2019-05-11

本文共 2299 字,大约阅读时间需要 7 分钟。

FileInputStream类的getChannel()方法 (FileInputStream Class getChannel() method)

  • getChannel() method is available in java.io package.

    getChannel()方法在java.io包中可用。

  • getChannel() method is used to return the distinct FileChannel object linked with this FileInputStream.

    getChannel()方法用于返回与此FileInputStream链接的独特FileChannel对象。

  • getChannel() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.

    getChannel()方法是一个非静态方法,只能通过类对象访问,如果尝试使用类名称访问该方法,则会收到错误消息。

  • getChannel() method does not throw an exception at the time of getting channel.

    getChannel()方法在获取频道时不会引发异常。

Syntax:

句法:

public FileChannel getChannel();

Parameter(s):

参数:

  • It does not accept any parameter.

    它不接受任何参数。

Return value:

返回值:

The return type of the method is FileChannel, it returns the FileChannel connected with this stream.

方法的返回类型为FileChannel ,它返回与此流连接的FileChannel。

Example:

例:

// Java program to demonstrate the example // of FileChannel getChannel() method // of FileInputStreamimport java.io.*;import java.nio.channels.*;public class GetChannelOfFIS {
public static void main(String[] args) throws Exception {
FileInputStream fis_stm = null; FileChannel file_ch = null; int count = 0; try {
// Instantiates FileInputStream fis_stm = new FileInputStream("C:\\includehelp.txt"); while ((count = fis_stm.read()) != -1) {
// By using read() method is to read // a byte from fis_stm count = fis_stm.read(); // Display corresponding bytes value byte b = (byte) count; // Display value of b System.out.println("fis_stm.read(): " + b); } // By using getChannel() method is to return // FileChannel linked with the stream file_ch = fis_stm.getChannel(); System.out.println("fis_stm.getChannel(): " + file_ch); } catch (Exception ex) {
System.out.println(ex.toString()); } finally {
// with the help of this block is to // free all necessary resources linked // with the stream if (fis_stm != null) {
fis_stm.close(); if (file_ch != null) {
file_ch.close(); } } } }}

Output

输出量

fis_stm.read(): 4fis_stm.read(): 97fis_stm.read(): 97fis_stm.read(): 8fis_stm.read(): 111fis_stm.read(): 108fis_stm.read(): 33fis_stm.read(): 33fis_stm.getChannel():

翻译自:

转载地址:http://cwvzd.baihongyu.com/

你可能感兴趣的文章
presumably用法
查看>>
stick用法
查看>>
TeamWork#3,Week5,The First Meeting of Our Team
查看>>
获取或者设置非行间样式方法二
查看>>
隔日随笔样式测试
查看>>
ICMP(网际控制报文协议)
查看>>
Sonar安装和常见问题解决
查看>>
[蓝桥杯]PREV-12.历届试题_危险系数
查看>>
redis常用命令
查看>>
第一周例行报告及作业汇总
查看>>
SQL2043N 与 linux的randomize_va_space特性
查看>>
树莓派使用无线网卡上网相关命令
查看>>
优秀架构师是怎么炼成的?
查看>>
Hibernate的CRUD
查看>>
StringBuilder和StringBuffer的区别
查看>>
基于Extjs+SpringMVC+MyBatis+Oracle的B/S信息系统简化开发思路
查看>>
【python】字典的嵌套
查看>>
微信运营:必须收藏的101条万能微信标题公式
查看>>
【XLL 框架库函数】 TempMissing/TempMissing12
查看>>
利用VS自带发布功能实现web项目快速部署
查看>>