设为首页 加入收藏

TOP

RandomAccessFileDemo
2015-11-21 00:59:04 来源: 作者: 【 】 浏览:1
Tags:RandomAccessFileDemo

?

?

package test;

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


public class RandomAccessFileDemo{
	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
**/


?

】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇hdu3001 Travelling 下一篇HDU 1505 City Game-dp-(最大子..

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容: