我怎么看都和毕老师讲的一样啊?为什么我就是写入不了完整的字节呢?
import java.io.*;
class RandomAccessFileDemo
{
public static void main(String[] args) throws IOException
{
writeFile();
//System.out.println(Integer.toBinaryString(258));
}
public static void writeFile() throws IOException
{
RandomAccessFile raf = new RandomAccessFile("ran.txt","rw");
raf.write("李四".getBytes());
raf.writeInt(258);//我的writeInt怎么没起作用啊?,有同学说要用flush但是我看了RandomAccessFile就没有flush方法而且运行以后是覆盖原文件的
raf.close();
}
} |
|