📄 testfile.java
字号:
package chc;import java.io.*;public class TestFile { public static File file; public static void display() throws IOException { System.out.println(file.getAbsolutePath()); System.out.println(file.getCanonicalPath()); System.out.println(file.getName()); System.out.println(file.getParent()); System.out.println(file.toString()); } public static void main(String[] args) throws IOException { file = new File(args[0]); display(); }}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -