2011年12月29日 星期四

Java - 檔案型態 get the file type

如果你想要得知某個檔案的型態,程式如下:

        FileNameMap fileNameMap = URLConnection.getFileNameMap();
        String type = fileNameMap.getContentTypeFor("/mnt/sdcard/a.jpg");
        Log.d("gill","file type = " + type);

你可以從log看到
D/gill    ( 5710): file type = image/jpeg

這個檔案是image且是jpeg的型態

沒有留言:

張貼留言