Java RandomAccessFile write()方法
java.io.RandomAccessFile.write(byte[] b) 方法写入b.length个字节从指定的字节数组到该文件,并从当前文件指针。
1 语法
public void write(byte[] b)
2 参数
b:写出的字节数组
3 返回值
无
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.RandomAccessFile.write(byte[] b)方法的例子
*/
import java.io.*;
public class Demo {
public static void main(String[] args) {
try {
byte[] b = {1};
// create a new RandomAccessFile with filename test
RandomAccessFile raf = new RandomAccessFile("d:/test.txt", "rw");
// write a byte in the file
raf.write(b);
// set the file pointer at 0 position
raf.seek(0);
// print the Byte
System.out.println("" + raf.readByte());
} catch (IOException ex) {
ex.printStackTrace();
}
}
}
假设test.txt文件内容如下:
ABCDE
输出结果为:
1
热门文章
优秀文章