0

アプリ設定に接続文字列を保存する次の方法があります。ユーザーが「読み書き」できる情報を処理する(asp.netのWeb構成)のようなAndroidファイルはありますか?

public static System.String StrConnectionstring
            {
                get 
                {
                    if (DB._StrConnectionstring == null)
                    {
                        return AppSettings.GetConnectionSettings("DSN");
                    }
                    return DB._StrConnectionstring;
                }
                set { DB._StrConnectionstring = value; }
            }   
4

1 に答える 1

0

共有設定を使用する:

宣言 :

public static final String MYPREFS = "MySharedPreferenceFile";
SharedPreferences settings;
SharedPreferences.Editor editor;

初期化:

settings = context.getSharedPreferences(MYPREFS, 0);
editor = settings.edit();

値を保存するには:

editor.putString("Name","test");
editor.commit();

値を取得するには:

settings.getString("Name",""); // here value field is for to specify default value

ありがとう。

于 2013-01-01T08:40:37.790 に答える