Here you can find the source of createImageName()
@SuppressLint("SimpleDateFormat") public static String createImageName()
//package com.java2s; import java.text.SimpleDateFormat; import java.util.Date; import android.annotation.SuppressLint; public class Main { @SuppressLint("SimpleDateFormat") public static String createImageName() { SimpleDateFormat dateFormat = new SimpleDateFormat( "yyyyMMdd_HHmmss"); return "IMG" + dateFormat.format(new Date(System.currentTimeMillis())) + ".jpg"; }//from w ww. j ava2 s . com }