2016-09-09 2 views

답변

1

는 다음을 사용할 수 있습니다

public static void loadI() { 
    i = new BigInteger(prefs.getString("I", "0")); 
} 

public static void saveI() { 
    SharedPreferences.Editor editor = prefs.edit(); 
    editor.putString("I", i.toString()); 
    editor.apply(); 
}