??? try {
??????? File f = new File("filename");
??????? RandomAccessFile raf = new RandomAccessFile(f, "rw");
???
??????? // Read a character
??????? char ch = raf.readChar();
???
??????? // Seek to end of file
??????? raf.seek(f.length());
???
??????? // Append to the end
??????? raf.writeChars("aString");
??????? raf.close();
??? } catch (IOException e) {
??? }
|----------------------------------------------------------------------------------------|
版權(quán)聲明 版權(quán)所有 @zhyiwww
引用請(qǐng)注明來源 http://www.aygfsteel.com/zhyiwww
|----------------------------------------------------------------------------------------|