当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java java.net.FileNameMap用法及代码示例


java.net.FileNameMap是一个Java接口。 FileNameMap 接口是java.net包。 FileNameMap 提供了一种在文件名和 MIME 类型字符串之间进行映射的机制。我们可以使用FileNameMap getContentTypeFor方法来获取MIME类型指定文件的。

用法:

public interface FileNameMap

的方法java.net.FileNameMap 接口

FileNameMap 接口仅包含一种名为:

getContentTypeFor(String fileName) 方法 - 它是 java.net.FileNameMap 接口的一部分。顾名思义,getContentFor 用于获取特定文件的 String 格式的 MIME 类型。

用法:

String getContentTypeFor(String fileName)

方法参数:该方法只有一个参数,参数为String类型。

方法返回类型:它具有 String 返回类型,并将返回文件的 MIME 类型。

如何调用 getContentTypeFor 方法?

第 1 步:使用 URLConnection.getFileNameMap() 静态方法从数据文件加载 fileNameMap

FileNameMap fileNameMap = URLConnection.getFileNameMap();

步骤 2:调用 FileNameMap.getContentTypeFor(String fileName) 方法并传递 fileName 以获取其 MIME 类型

String mimeType = fileNameMap.getContentFor(String nameOfTheFile);

例子:下面是一个java程序,用于更好地理解FileNameMap接口,然后使用FileNameMap getContentTypeFor()方法获取文件的MIME类型。

Java


// Java program to demsonstrate the 
// working of the FileNameMap interface 
  
import java.io.*; 
import java.net.*; 
  
class GFG { 
    public static void main(String[] args) 
    { 
        try { 
            FileNameMap fileNameMap 
                = URLConnection.getFileNameMap(); 
            
            // specify all the fileName whose 
            // MIME type we need to know 
            String firstFileName = "tmp.txt"; 
            String secondFileName = "profile.png"; 
            String thirdFileName = "gfg.mp4"; 
  
            // call getContentTypeFor() method for each 
            // fileName to get it's MIME type , method will 
            // return null if fileName is invalid 
            String firstFileMimeType = fileNameMap.getContentTypeFor(firstFileName); 
            String secondFileMimeType = fileNameMap.getContentTypeFor(secondFileName); 
            String thirdFileMimeType = fileNameMap.getContentTypeFor(thirdFileName); 
  
            // print all the MIME types 
            System.out.println("Mime type of "
                               + firstFileName + " is "
                               + firstFileMimeType); 
            System.out.println("Mime type of "
                               + secondFileName + " is "
                               + secondFileMimeType); 
            System.out.println("Mime type of "
                               + thirdFileName + " is "
                               + thirdFileMimeType); 
        } 
        catch (Exception e) { 
            System.out.println("Some Exception "
                               + e.getMessage()); 
        } 
    } 
}
输出
Mime type of tmp.txt is text/plain
Mime type of profile.png is image/png
Mime type of gfg.mp4 is video/mp4


相关用法


注:本文由纯净天空筛选整理自harshsethi2000大神的英文原创作品 java.net.FileNameMap Interface in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。