Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

NAKAGAWA Masaki http://d.hatena.ne.jp/ikasam_a/

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

デフォルトのMIMEタイプを追加する

// PNGの場合

import javax.activation.FileTypeMap;
import javax.activation.MimetypesFileTypeMap;

public void setMimeType() {
    String mimeType = "image/png    png PNG";
    MimetypesFileTypeMap map = new MimetypesFileTypeMap();
    map.addMimeTypes(mimeType);
    FileTypeMap.setDefaultFileTypeMap(map);
}
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS