머..대략적이긴 하지만 그래도~ 쓸만은 하다
import javax.activation.MimetypesFileTypeMap;
import java.io.File;
class GetMimeType {
public static void main(String args[]) {
File f = new File("gumby.gif");
System.out.println("Mime Type of " + f.getName() + " is " +
new MimetypesFileTypeMap().getContentType(f));
// expected output :
// "Mime Type of gumby.gif is image/gif"
}
}
'development > java' 카테고리의 다른 글
DB별 Driver Class (0) | 2010.09.16 |
---|---|
자바로 이메일 보내기 (2) | 2010.08.10 |
외부 아이피 IP 확인하기 (0) | 2010.04.19 |
날짜 차이 구하기 (0) | 2010.04.19 |
String 을 Timestamp 형태로 변환 (0) | 2010.04.19 |