JAVA判断文件的内容类型
Posted 一万年以前
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JAVA判断文件的内容类型相关的知识,希望对你有一定的参考价值。
Java 7 新的特性,判断文件的内容类型。
Program to demonstrate Java 7 new feature : Determining the file content type. package com.hubberspot.nio; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; public class FileContentType { public static void main(String[] args) { printContentType("D:/Downloads/java.txt"); printContentType("D:/Downloads/java.ppt"); printContentType("D:/Downloads/java.doc"); printContentType("D:/Downloads/java.jar"); } private static void printContentType(String pathToFile) { Path path = Paths.get(pathToFile); String contentType = null; try { contentType = Files.probeContentType(path); } catch (IOException e) { e.printStackTrace(); } System.out.println("File content type is : " + contentType); } }
以上是关于JAVA判断文件的内容类型的主要内容,如果未能解决你的问题,请参考以下文章