Java tutorial
//package com.java2s; import android.content.Context; import android.content.SharedPreferences; public class Main { public static void setUserInfo(Context context, String uname, String upwd) { SharedPreferences preferences = context.getSharedPreferences("UserInfo.txt", Context.MODE_PRIVATE); SharedPreferences.Editor editor = preferences.edit(); editor.putString("uname", uname); editor.putString("upwd", upwd); editor.commit(); } }