题目内容
(3-8)importjava.io.IOException;importjava.io.RandomAccessFile;publicclassTemp8{publicstaticvoidmain(String[]args){try{RandomAccessFileraf=newRandomAccessFile("c:\\test.txt","rw");raf.writeUTF("HelloWorld");raf.seek(0);System.out.println("内容:"+raf.readLine());System.out.println("长度:"+raf.length());raf.writeUTF("Thisisanexample");raf.seek(15);System.out.println("内容:"+raf.readLine());System.out.println("长度:"+raf.length());raf.close();}catch(IOExceptionex){ex.printStackTrace();}}}程序运行结果:
查看答案
搜索结果不匹配?点我反馈