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