Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;
/*
 * Copyright (c) 2017 Ahmed-Abdelmeged
 *
 * github: https://github.com/Ahmed-Abdelmeged
 * email: ahmed.abdelmeged.vm@gamil.com
 * Facebook: https://www.facebook.com/ven.rto
 * Twitter: https://twitter.com/A_K_Abd_Elmeged
 *
 * 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.
 */

import android.content.Context;
import android.content.ContextWrapper;

import android.graphics.Bitmap;

import java.io.File;

import java.io.FileOutputStream;

public class Main {
    /**
     * Method to save save user image in internal storage for the device
     *
     * @param bitmapImage the downloaded bitmap
     * @param context
     * @param name        the image name (the last segment)
     * @return the saved path for th image
     */
    public static String saveImageIntoInternalStorage(Bitmap bitmapImage, Context context, String name) {

        // path to /data/data/adas/app_data/imageDir
        ContextWrapper contextWrapper = new ContextWrapper(context);

        //Folder name in device android/data/
        String folderName = "UserImages";
        File directory = contextWrapper.getDir(folderName, Context.MODE_PRIVATE);

        //Create imageDir
        File imagePath = new File(directory, name);

        FileOutputStream fileOutputStream = null;
        try {
            fileOutputStream = new FileOutputStream(imagePath);
            // Use the compress method on the BitMap object to write image to the OutputStream
            bitmapImage.compress(Bitmap.CompressFormat.JPEG, 50, fileOutputStream);
            fileOutputStream.close();
        } catch (Exception e) {
        }
        return directory.getAbsolutePath();
    }
}