⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 testfile.java

📁 机器学习算法中的CHC算法
💻 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 + -