RandomAccessFileDemo

来源:互联网 发布:c语言与数据库 编辑:程序博客网 时间:2024/05/18 01:38


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:122b:97b:110b:zan**/


0 0
原创粉丝点击