码迷,mamicode.com
首页 > 数据库 > 详细

RandomAccessFileDemo

时间:2015-06-22 14:59:53      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:java


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

标签:java

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!