广州北大青鸟计算机职业培训学校
互联网技术培训、软件技术培训、大数据培训、云计算培训、数据分析培训信息网
当前位置:网站首页 > 软件教程 > Java技术 > 正文

惠州Java随机文件的读和写_北大青鸟IT学校

作者:邓华发布时间:2021-04-12分类:Java技术浏览:837


导读:之前惠州北大青鸟老师给大家分享了Java随机文件的模式,下面我们一起来学习一下Java随机文件的读和写,希望对大家学Java有帮助。

之前惠州北大青鸟老师给大家分享了Java随机文件的模式,下面我们一起来学习一下Java随机文件的读和写,希望对大家学Java有帮助。

我们通过指定文件名和访问模式来创建RandomAccessFile类的实例。

RandomAccessFile  raf = new RandomAccessFile("randomtest.txt", "rw");

随机访问文件具有文件指针,当我们从其读取数据或向其写入数据时,该文件指针向前移动。

文件指针是我们下一次读取或写入将开始的光标。

其值指示光标与文件开头的距离(以字节为单位)。

我们可以通过使用其getFilePointer()方法来获取文件指针的值。

当我们创建一个RandomAccessFile类的对象时,文件指针被设置为零。

我们可以使用seek()方法将文件指针设置在文件中的特定位置。

RandomAccessFile的length()方法返回文件的当前长度。我们可以通过使用其setLength()方法来扩展或截断文件。

实例

以下代码显示如何使用RandomAccessFile对象读取和写入文件。

import java.io.File;import java.io.IOException;import java.io.RandomAccessFile;public class Main {  public static void main(String[] args) throws IOException {
   String fileName = "randomaccessfile.txt";    File fileObject = new File(fileName);    if (!fileObject.exists()) {
     initialWrite(fileName);
   }
   readFile(fileName);
   readFile(fileName);
 }  public static void readFile(String fileName) throws IOException {
   RandomAccessFile raf = new RandomAccessFile(fileName, "rw");    int counter = raf.readInt();
   String msg = raf.readUTF();

   System.out.println(counter);
   System.out.println(msg);
   incrementReadCounter(raf);
   raf.close();
 }  public static void incrementReadCounter(RandomAccessFile raf)      throws IOException {    long currentPosition = raf.getFilePointer();
   raf.seek(0);    int counter = raf.readInt();
   counter++;
   raf.seek(0);
   raf.writeInt(counter);
   raf.seek(currentPosition);
 }  public static void initialWrite(String fileName) throws IOException {
   RandomAccessFile raf = new RandomAccessFile(fileName, "rw");
   raf.writeInt(0);
   raf.writeUTF("Hello world!");
   raf.close();
 }
}

上面的代码生成以下结果。

0

Hello world!

1

Hello world!

点击咨询直接了解更多相关资料,我在惠州北大青鸟新方舟等你。

java3.png

Java

标签:惠州计算机JAVA软件开发惠州计算机Java软件开发惠州计算机JAVA培训惠州计算机JAVA软件开发学校惠州计算机Java软件开发培训JAVAJava软件开发北大青鸟IT计算机学校北大青鸟IT软件学校北大青鸟IT学校


Java技术排行
标签列表
网站分类
文章归档
最近发表