Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
//License from project: Apache License 

import java.util.Hashtable;

public class Main {
    private static Hashtable<String, String> mimeTable = new Hashtable<String, String>();

    public static String getMimeType(String ext) {
        return mimeTable.get(ext.toLowerCase());
    }
}