Java tutorial
//package com.java2s; //License from project: Open Source License import android.content.Context; import android.os.Environment; import java.io.File; import java.text.SimpleDateFormat; import java.util.Date; import java.util.Locale; public class Main { /** * Create a File for saving an image in the * "/Android/data/package.name/Files" directory * * @param context application context * @return a new File for saving an image */ private static File getOutputMediaFile(Context context) { // To be safe, you should check that the SDCard is mounted // using Environment.getExternalStorageState() before doing this. File mediaStorageDir = new File( Environment.getExternalStorageDirectory() + "/Android/data/" + context.getPackageName() + "/Files"); // This location works best if you want the created images to be shared // between applications and persist after your app has been uninstalled. // Create the storage directory if it does not exist if (!mediaStorageDir.exists()) { if (!mediaStorageDir.mkdirs()) { return null; } } // Create a media file name String timeStamp = new SimpleDateFormat("ddMMyyyy_HHmmssSS", Locale.ENGLISH).format(new Date()); File mediaFile; String mImageName = "FRIDGE_" + timeStamp + ".jpg"; mediaFile = new File(mediaStorageDir.getPath() + File.separator + mImageName); return mediaFile; } }