Java RandomAccessFile writeBytes()方法
java.io.RandomAccessFile.writeBytes(String s) 方法写入字符串到文件为一个字节序列。字符串中的每个字符写入出来,按顺序排列,通过丢弃其高8位。写入从文件指针的当前位置。
1 语法
public final void writeBytes(String s)
2 参数
s:要写入的字节的字符串。
3 返回值
无
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.io.RandomAccessFile.writeBytes(String s)方法的例子
*/
import java.io.*;
public class Demo {
public static void main(String[] args) {
try {
// create a new RandomAccessFile with filename test
RandomAccessFile raf = new RandomAccessFile("d:/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();
}
}
}
假设test.txt文件内容如下:
ABCDE
输出结果为:
Hello World
This is an example
热门文章
优秀文章