java.io.RandomAccessFile.writeByte(int v)方法實例
java.io.RandomAccessFile.writeByte(int v) 方法寫入一個字節到文件作為一個單字節值。寫入從文件指針的當前位置。
聲明
以下是java.io.RandomAccessFile.writeByte()方法的聲明
public final void writeByte(int v)
參數
-
v -- 要寫入一個字節的值。
返回值
此方法無任何返回值。
異常
-
IOException -- 如果發生I/ O錯誤。
例子
下麵的示例演示java.io.RandomAccessFile.writeByte()方法的用法。
package com.yiibai; import java.io.*; public class RandomAccessFileDemo { public static void main(String[] args) { try { byte[] b1 = {15, 8}; // create a new RandomAccessFile with filename test RandomAccessFile raf = new RandomAccessFile("c:/test.txt", "rw"); // write something in the file raf.writeByte(b1[0]); // set the file pointer at 0 position raf.seek(0); // read byte System.out.println("" + raf.readByte()); // set the file pointer at 0 position raf.seek(0); // write 0 at the start raf.writeByte(b1[1]); // set the file pointer at 0 position raf.seek(0); // read byte System.out.println("" + raf.readByte()); } catch (IOException ex) { ex.printStackTrace(); } } }
假設我們有一個文本文件c:/ test.txt,它具有以下內容。該文件將被用作輸入到我們的示例程序:
ABCDE
讓我們來編譯和運行上麵的程序,這將產生以下結果:
15 8