📄 testrecording.java
字号:
package transactions;
import java.io.*;
import java.util.*;
public class TestRecording {
public static void main(String[] args) {
try {
Properties props = new Properties();
File file = new File("Recording.dat");
FileInputStream fis = new FileInputStream(file);
props.load(fis);
fis.close();
Recording recording = new Recording();
recording.create(props);
} catch (Exception e) {
e.printStackTrace();
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -