Java RandomAccessFile writeBytes()方法与示例

RandomAccessFile类writeBytes()方法

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

  • writeBytes()方法用于将字节序列(即字符串)写入文件。字符串中存在的每个字符都通过跳过其高8位而按顺序写出

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

  • writeBytes()方法在写入字节时可能会引发异常。
    IOException:在执行输入/输出操作时,此异常可能会引发异常。

语法:

    public final void writeBytes(String str);

参数:

  • 字符串str –表示要写入的字符串。

返回值:

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

示例

// Java程序演示示例 
//的void writeBytes(String str)方法的
// RandomAccessFile-

import java.io.*;
class RAFWriteBytes {
 public static void main(String[] args) throws Exception {
  //实例化随机访问文件
  //具有文件名和权限的对象
  RandomAccessFile ra_f = new RandomAccessFile("e:/includehelp.txt", "rw");

  //通过使用writeBytes()方法是 
  //写入字节序列,即字符串
  //一次到文件
  ra_f.writeBytes("Welcome, in Java World!!!");

  //通过使用seek()方法是 
  //设置当前文件指示器
  //从哪里可以读/写 
  //开始,即我们在此处设置为0,因此阅读
  //从0到EOF-
  ra_f.seek(0);

  //通过使用readLine()方法是 
  //从该文件中读取字符串
  System.out.println("ra_f.readLine(): " + ra_f.readLine());

  //通过使用close()isto方法
  //关闭此流ran_f-
  ra_f.close();
 }
}

输出结果

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