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

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

RandomAccessFile类close()方法 (RandomAccessFile Class close() method)

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

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

  • close() method is used to close this RandomAccessFile stream and free all other system resources linked with this stream.

    close()方法用于关闭此RandomAccessFile流并释放与此流链接的所有其他系统资源。

  • close() 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.

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

  • close() method may throw an exception at the time of the closing stream.

    close()方法在关闭流时可能会引发异常。

    IOException: This exception may throw while performing input/output operation.

    IOException :在执行输入/输出操作时,可能会抛出此异常。

Syntax:

句法:

public void close();

Parameter(s):

参数:

  • It does not accept any parameter.

    它不接受任何参数。

Return value:

返回值:

The return type of this method is void, it returns nothing.

此方法的返回类型为void ,不返回任何内容。

Example:

例:

// Java program to demonstrate the example // of void close() method of RandomAccessFileimport java.io.*;class RAFClose {
public static void main(String[] args) throws Exception {
String str = "Welcome, in Java World!!!"; // Instantiate a random access file // object with file name and permissions RandomAccessFile ra_f = new RandomAccessFile("e:/includehelp.txt", "rw"); // By using writeUTF() method is to // write a string value to the file by using // UTF encoding scheme ra_f.writeUTF(str); // by using seek() method is to // set the current file indicator // from where read/write could // start i.e. we set here 0 so reading // will be done from 0 till EOF ra_f.seek(0); System.out.println("ra_f.readUTF(): " + ra_f.readUTF()); // By using close() method isto // close this stream ran_f ra_f.close(); }}

Output

输出量

ra_f.readUTF(): Welcome, in Java World!!!

翻译自:

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

你可能感兴趣的文章
javascript函数的几种写法集合
查看>>
BZOJ第1页养成计划
查看>>
漫漫修行路
查看>>
js与jQuery的区别——每日一记录
查看>>
MyBatis 处理sql中的 大于,小于,大于等于,小于等于
查看>>
Lunix文件的读写权限问题
查看>>
Liferay 7:portlet name
查看>>
PostgreSQL9.6.3的REDIS测试
查看>>
解决pycharm问题:module 'pip' has no attribute 'main'
查看>>
002 lambda表达式
查看>>
springboot添加自定义注解
查看>>
POJ 2391 Ombrophobic Bovines ( 经典最大流 && Floyd && 二分 && 拆点建图)
查看>>
JavaScript数组方法之reduce
查看>>
Linux常用命令之文件搜索命令
查看>>
thinkphp自定义权限管理之名称判断
查看>>
C++ ORM ODB 入门介绍(一)
查看>>
C#_02.14_基础五_.NET类
查看>>
Flask 学习资源
查看>>
Android SDK下载和更新失败的解决方法 分类: Android...
查看>>
MVC2 强类型的 HTML Helper
查看>>