SimpleDateFormat sdf = new SimpleDateFormat("yyyyMMdd_HHmmss");
String currentDateandTime = sdf.format(new Date());
//저장
SharedPreferences pref = getSharedPreferences("pref", MODE_PRIVATE);
SharedPreferences.Editor editor = pref.edit();
editor.putString("key", "value");
editor.commit();
//불러오기
SharedPreferences pref = getSharedPreferences("pref", MODE_PRIVATE);
pref.getString("key", "");
출처:http://arabiannight.tistory.com/198