首页 > 数据库技术 > 详细

RandomAccessFileDemo

时间:2015-06-22 14:57:54      阅读:239      评论:0      收藏:0      [点我收藏+]


package test;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.RandomAccessFile;


public class <span style="font-family: Arial, Helvetica, sans-serif;">RandomAccessFile</span><span style="font-family: Arial, Helvetica, sans-serif;">Demo{</span>
	public static void main(String args[]) throws IOException{
		File f = new File("d:"+File.separator+"text.txt") ;		// 实例化File类的对象
		RandomAccessFile raf=new RandomAccessFile(f,"rw");
		raf.writeBytes("zhangsan");
		raf.close();
		read();
	}
	
	public static void read() throws IOException{
		File f = new File("d:"+File.separator+"text.txt") ;		// 实例化File类的对象
		RandomAccessFile raf=new RandomAccessFile(f,"r");
		byte b1=raf.readByte();
		System.out.println("b:"+b1);
		raf.skipBytes(5);
		byte b2=raf.readByte();
		System.out.println("b:"+b2);
		raf.seek(3);
		byte b3=raf.readByte();
		System.out.println("b:"+b3);
		System.out.println("b:"+(new String(new byte[]{b1,b2,b3})));
		raf.close();
	}
};
/**
b:122
b:97
b:110
b:zan
**/


RandomAccessFileDemo

原文:http://blog.csdn.net/ztt_1119/article/details/46593075

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!