Home Java Java-get-example Java get File Type
Questions:Ask|Latest



Java get File Type
Posted on: November 6, 2008 By Deepak Kumar
This section illustrates you how to get the file type. In the given example, we have create an instance of the class File and passed the file 'Hello.txt' to the constructor of this class.

Java get File Type

     

This section illustrates you how to get the file type. In the given example, we have create an instance of the class File and passed the file 'Hello.txt' to the constructor of this class. The method chooser.getTypeDescription(file) of class JFileChooser returns the file type.

 

 

 

Here is the code of GetFileType .java

import java.io.*;
import javax.swing.*;

class GetFileType {
  public static void main(String[] args){
    JFileChooser chooser = new JFileChooser();
  File file = new File("Hello.txt");
  
  String fileTypeName = chooser.getTypeDescription(file);
  System.out.println("File Type= "+fileTypeName);
  }
}

Output will be displayed as:

Download Source Code


Recommend the tutorial

Ask Questions?    Discuss: Java get File Type  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 
Comments