Determining the file content type - Java File Path IO

Java examples for File Path IO:File Attribute

Description

Determining the file content type

Demo Code

import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;

public class Main {
  public static void main(String[] args) throws Exception {
    displayContentType("/home/docs/users.txt");
    displayContentType("/home/docs/Chapter 2.doc");
    displayContentType("/home/docs/java.exe");
  }/* ww  w .ja  va2  s.  co m*/

  static void displayContentType(String pathText) throws Exception {
    Path path = Paths.get(pathText);
    String type = Files.probeContentType(path);
    System.out.println(type);
  }

}

Related Tutorials