java.io.RandomAccessFile.writeBytes(String s)方法實例
java.io.RandomAccessFile.writeBytes(String s) 方法寫入字符串到文件爲一個字節序列。字符串中的每個字符寫入出來,按順序排列,通過丟棄其高8位。寫入從文件指針的當前位置。
聲明
以下是java.io.RandomAccessFile.writeBytes()方法的聲明
public final void writeBytes(String s)
參數
- s -- 要寫入的字節的字符串。
返回值
此方法無任何返回值。
異常
- IOException -- 如果發生I/ O錯誤。
例子
下面的示例演示java.io.RandomAccessFile.writeBytes()方法的用法。
package com.yiibai; import java.io.*; public class RandomAccessFileDemo { public static void main(String[] args) { try { // create a new RandomAccessFile with filename test RandomAccessFile raf = new RandomAccessFile("c:/test.txt", "rw"); // write bytes in the file raf.writeBytes("Hello World"); // set the file pointer at 0 position raf.seek(0); // read line System.out.println("" + raf.readLine()); // set the file pointer at 0 position raf.seek(0); // write bytes at the start raf.writeBytes("This is an example"); // set the file pointer at 0 position raf.seek(0); // read line System.out.println("" + raf.readLine()); } catch (IOException ex) { ex.printStackTrace(); } } }
假設我們有一個文本文件c:/ test.txt,它具有以下內容。該文件將被用作輸入到我們的示例程序:
ABCDE
讓我們來編譯和運行上面的程序,這將產生以下結果:
Hello World This is an example