📄 example8_4.java
字号:
/* 随机流 */
import java.io.*;
class Example8_4
{
public static void main(String[] args)
{
try{
RandomAccessFile f=new RandomAccessFile("a.txt","rw");
f.writeBytes("Zhang si ming");
f.close();
}
catch(IOException e){
System.out.println(e);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -