RandomAccessFile
- RandomAccessFile直接继承于java.lang.Object,和四个抽象基类没有关系。实现了DataInput和DataOutput接口
- RandomAccessFile既可以作为一个输入流,又可以作为一个输出流
@Test
public void test(){
RandomAccessFile raf1 = null;//mode:指定RandomAccessFile的访问模式
RandomAccessFile raf2 = null;//有"r","rw","rwd","rws"四种mode
try {
raf1 = new RandomAccessFile("学生证.jpg","r");
raf2 = new RandomAccessFile("学生证1.jpg","rw");
byte[] buffer = new byte[1024];
int len;
while ((len = raf1.read(buffer)) != -1){
raf2.write(buffer,0,len);
}
} catch (IOException e) {
e.printStackTrace();
} finally {
if(raf1 != null)
try {
raf1.close();
} catch (IOException e) {
e.printStackTrace();
}
if (raf2 != null)
try {
raf2.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
- 如果RandomAccessFile作为输出流时,写出到的文件如果不存在,则在执行过程中自动穿件,如果写出到的文件存在,则会对原有文件内容进行覆盖(默认情况下从头覆盖)
@Test
public void test1(){
RandomAccessFile raf1 = null;
RandomAccessFile raf2 = null;
try {
raf1 = new RandomAccessFile("hello1.txt","rw");
raf2 = new RandomAccessFile("hello.txt","rw");
raf1.write("xyz".getBytes());//文件"hello1.txt"被新建,内容为:"xyz"
raf2.write("xyz".getBytes());//文件"hello.txt"原内容为:"hello world!"。新内容为:"xyzlo world!"
} catch (IOException e) {
e.printStackTrace();
} finally {
if (raf1 != null){
try {
raf1.close();
} catch (IOException e) {
e.printStackTrace();
}
}
if (raf2 != null){
try {
raf2.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
-
可以通过相关操作,实现RandomAccessFile“插入”数据效果
应用情境:
原理:定位到要插入的位置,将其后面的数据存在byte数组里,写入要插入的数据,再写入byte数组中的数据,代码如下:
/*
使用RandomAccessFile实现数据的插入效果
*/
@Test
public void test3() throws IOException {
RandomAccessFile raf1 = new RandomAccessFile("hello.txt","rw");
raf1.seek(3);//将指针调到角标为3的位置
//保存指针3后面的所有数据到StringBuilder中
StringBuilder builder = new StringBuilder((int) new File("hello.txt").length());
byte[] buffer = new byte[20];
int len;
while((len = raf1.read(buffer)) != -1){
builder.append(new String(buffer,0,len)) ;
}
//调回指针,写入“xyz”
raf1.seek(3);
raf1.write("xyz".getBytes());
//将StringBuilder中的数据写入到文件中
raf1.write(builder.toString().getBytes());
raf1.close();
//思考:将StringBuilder替换为ByteArrayOutputStream
}
}
网友评论