黑马程序员技术交流社区
标题:
代码问题
[打印本页]
作者:
学习代码
时间:
2014-4-8 16:19
标题:
代码问题
import java.io.*;
class RandomAccessFileDemo
{
public static void main(String[] args) throws IOException
{
//writerFile();
readerFile();
}
public static void readerFile()throws IOException
{
RandomAccessFile raf = new RandomAccessFile("file.txt","r");
byte[] arr = new byte[4];
raf.read(arr);
String name = new String(arr);
int age = raf.readInt();
System.out.println(name);
System.out.println(age);
byte[] arr1 = new byte[4];
raf.read(arr1);
String name1 = new String(arr1);
int age1 = raf.readInt();
System.out.println(name1);
System.out.println(age1);
raf.close();
}
public static void writerFile()throws IOException
{
RandomAccessFile raf = new RandomAccessFile("file.txt","rw");
raf.write("李四".getBytes());
raf.writeInt(97);
raf.write("李".getBytes());
raf.writeInt(99);
raf.close();
}
}
复制代码
大侠给看一下 为什么会有 异常抛出的啊
作者:
Up↑Lee↗
时间:
2014-4-8 23:03
你得确保你目录下有file.txt啊
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2