集册 Java实例教程 获取文件

获取文件

欢马劈雪     最近更新时间:2020-01-02 10:19:05

464
获取文件的文件类型名称

import java.io.File;


import javax.swing.JFileChooser;/*来 自 时代Java*/


public class Main {

  public static void main(String[] argv) {

    JFileChooser chooser = new JFileChooser();


    // Create a File instance of the file

    File file = new File("filename.txt");


    // Get the file type name

    String fileTypeName = chooser.getTypeDescription(file);

    System.out.println(fileTypeName);/** from nowjava.com - 时代Java**/

    // Text Document

  }

}