Java tutorial
//package com.java2s; //License from project: Apache License import android.graphics.Bitmap.CompressFormat; public class Main { public static CompressFormat getCompressType(String path) { String type = getFileType(path); if (type.equals("png")) { return CompressFormat.PNG; } return CompressFormat.JPEG; } public static String getFileType(String path) { return path.substring(path.lastIndexOf(".") + 1, path.length()); } }