Android Open Source - brainrot Mime Types






From Project

Back to project page brainrot.

License

The source code is released under:

Apache License

If you think the Android project brainrot listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

/* 
 * Copyright (C) 2008 OpenIntents.org// w  ww . j a  v  a  2  s .  c  o m
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.ipaulpro.afilechooser.utils;

import java.util.HashMap;
import java.util.Map;

import android.net.Uri;
import android.webkit.MimeTypeMap;

public class MimeTypes {

  private Map<String, String> mMimeTypes;

  public MimeTypes() {
    mMimeTypes = new HashMap<String,String>();
  }
  
  public void put(String type, String extension) {
    // Convert extensions to lower case letters for easier comparison
    extension = extension.toLowerCase();
    
    mMimeTypes.put(type, extension);
  }
  
  public String getMimeType(String filename) {
    
    String extension = FileUtils.getExtension(filename);
    
    // Let's check the official map first. Webkit has a nice extension-to-MIME map.
    // Be sure to remove the first character from the extension, which is the "." character.
    if (extension.length() > 0) {
      String webkitMimeType = MimeTypeMap.getSingleton().getMimeTypeFromExtension(extension.substring(1));
    
      if (webkitMimeType != null) {
        // Found one. Let's take it!
        return webkitMimeType;
      }
    }
    
    // Convert extensions to lower case letters for easier comparison
    extension = extension.toLowerCase();
    
    String mimetype = mMimeTypes.get(extension);
    
    if(mimetype==null) mimetype = "*/*";
    
    return mimetype;
  }
  
  public String getMimeType(Uri uri) {
  
    return getMimeType(FileUtils.getFile(uri).getName());  
  }
  
}




Java Source Code List

com.ipaulpro.afilechooser.FileChooserActivity.java
com.ipaulpro.afilechooser.FileListAdapter.java
com.ipaulpro.afilechooser.FileListFragment.java
com.ipaulpro.afilechooser.FileLoader.java
com.ipaulpro.afilechooser.utils.FileUtils.java
com.ipaulpro.afilechooser.utils.MimeTypeParser.java
com.ipaulpro.afilechooser.utils.MimeTypes.java
jcuenod.brainrot.BubbleChartDetails.java
jcuenod.brainrot.DBHelper.java
jcuenod.brainrot.DueCardBroadcastReceiver.java
jcuenod.brainrot.FlashCard.java
jcuenod.brainrot.ImportAsyncTask.java
jcuenod.brainrot.LanguageUtils.java
jcuenod.brainrot.MainActivity.java
jcuenod.brainrot.PieChartDetails.java
jcuenod.brainrot.ServiceStarter.java
jcuenod.brainrot.Statistics.java