Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
import android.content.Context;
import android.content.ContextWrapper;
import android.graphics.Bitmap;

import java.io.File;

import java.io.FileOutputStream;

public class Main {
    public static String saveToInternalSorage(Bitmap bitmapImage, Context context, int ID, String directoryName) {
        ContextWrapper cw = new ContextWrapper(context);
        File directory = cw.getDir(directoryName, Context.MODE_PRIVATE); // path to /data/data/yourapp/app_data/imageDir
        File path = new File(directory, "mpp_profile_pic_" + Integer.toString(ID)); // Create imageDir

        FileOutputStream fos = null;

        try {
            fos = new FileOutputStream(path);
            bitmapImage.compress(Bitmap.CompressFormat.PNG, 100, fos); // Use the compress method on the BitMap object to write image to the OutputStream
            fos.close();
        } catch (Exception e) {
            e.printStackTrace();
        }

        return directory.getAbsolutePath();
    }
}