发布
社区首页 >问答首页 >SharedPreferences空指针异常

SharedPreferences空指针异常
EN

Stack Overflow用户
提问于 2015-06-12 20:40:15
回答 4查看 15.7K关注 0票数 3

我正在尝试保存一个整数,该整数将存储用户使用ImageView接口点击一个SharedPreferences的次数。但是,当我运行该应用程序时,它在声明sharedPreferences的行上给出了空指针异常:

代码语言:javascript
复制
SharedPreferences mSharedPreferences = this.getPreferences(Context.MODE_PRIVATE);

这是我第一次使用这个界面,这让我有点困惑。我不知道为什么会这样。这是日志:

代码语言:javascript
复制
java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{koemdzhiev.com.eggyegg/koemdzhiev.com.eggyegg.MainActivity}: java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String android.content.Context.getPackageName()' on a null object reference
        at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2236)
        at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2387)
        at android.app.ActivityThread.access$800(ActivityThread.java:151)
        at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1303)
        at android.os.Handler.dispatchMessage(Handler.java:102)
        at android.os.Looper.loop(Looper.java:135)
        at android.app.ActivityThread.main(ActivityThread.java:5254)
        at java.lang.reflect.Method.invoke(Native Method)
        at java.lang.reflect.Method.invoke(Method.java:372)
        at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
        at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
 Caused by: java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String android.content.Context.getPackageName()' on a null object reference
        at android.content.ContextWrapper.getPackageName(ContextWrapper.java:132)
        at android.app.Activity.getLocalClassName(Activity.java:4987)
        at android.app.Activity.getPreferences(Activity.java:5021)
        at koemdzhiev.com.eggyegg.MainActivity.<init>(MainActivity.java:20)
        at java.lang.reflect.Constructor.newInstance(Native Method)
        at java.lang.Class.newInstance(Class.java:1606)
        at android.app.Instrumentation.newActivity(Instrumentation.java:1066)
        at   

这是从Application类扩展的类中的代码:

代码语言:javascript
复制
public class EggyEggApplication extends Application {

@Override
public void onCreate() {
    SharedPreferences mSharedPreferences = this.getSharedPreferences(getString(R.string.koemdzhiev_eggyegg_PREFERENCE_FILE_KEY), Context.MODE_PRIVATE);
    SharedPreferences.Editor mEditor = mSharedPreferences.edit();
    if(mSharedPreferences.contains(getString(R.string.koemdzhiev_eggyegg_PREFERENCE_FILE_KEY))== false) {
        mEditor.putInt(getString(R.string.koemdzhiev_eggyegg_PREFERENCE_FILE_KEY), 0).apply();
    }
}

这是我在主要活动中的代码:

代码语言:javascript
复制
public class MainActivity extends AppCompatActivity {
private static final String TAG = MainActivity.class.getSimpleName();
private int defaultValue;
private int i;
ImageView tapImage;
SharedPreferences mSharedPreferences = this.getPreferences(Context.MODE_PRIVATE);
SharedPreferences.Editor mEditor = mSharedPreferences.edit();

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);


    tapImage = (ImageView)findViewById(R.id.tapImage);
    tapImage.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            i++;
            mEditor.putInt(getString(R.string.koemdzhiev_eggyegg_PREFERENCE_FILE_KEY),i);
            mEditor.commit();
        }
    });
    defaultValue = getResources().getInteger(R.string.koemdzhiev_eggyegg_PREFERENCE_FILE_KEY);
    i = mSharedPreferences.getInt(getString(R.string.koemdzhiev_eggyegg_PREFERENCE_FILE_KEY),defaultValue);



    int defaultValue = getResources().getInteger(R.string.koemdzhiev_eggyegg_PREFERENCE_FILE_KEY);
    long lastTapNumber = mSharedPreferences.getInt(getString(R.string.koemdzhiev_eggyegg_PREFERENCE_FILE_KEY),defaultValue);
    i = (int) lastTapNumber;

}
private boolean isNetworkAvailable() {
    ConnectivityManager connectivityManager
            = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
    NetworkInfo activeNetworkInfo = connectivityManager.getActiveNetworkInfo();
    return activeNetworkInfo != null && activeNetworkInfo.isConnected();
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
}
EN

回答 4

Stack Overflow用户

回答已采纳

发布于 2015-06-12 20:51:18

问题在于您的MainActivity中的这一行:

代码语言:javascript
复制
SharedPreferences mSharedPreferences = this.getPreferences(Context.MODE_PRIVATE);

例外说,你得到了一个空指针,

之所以会出现这个空指针,是因为上下文为null,这是因为上面的行是在活动完成之前执行的,

因此,将这一行移动到您的onCreate方法中应该可以解决这个问题。

票数 11
EN

Stack Overflow用户

发布于 2015-06-12 20:49:17

在活动中,移动

代码语言:javascript
复制
SharedPreferences mSharedPreferences = this.getPreferences(Context.MODE_PRIVATE);
SharedPreferences.Editor mEditor = mSharedPreferences.edit();

onCreate内部。Yo需要一个Context来访问SharedPreferences。内部getPreferences(Context.MODE_PRIVATE),打电话给getPackageName

编辑

您应该避免使用本地化字符串作为SharedPreferences的键。

票数 3
EN

Stack Overflow用户

发布于 2015-06-12 20:44:33

好吧,你说你保存整数,所以它们是你在寻找的关键词。

代码语言:javascript
复制
       "java.lang.String android.content.Context.getPackageName()"

编辑:我的错!创建方法可能有问题。

票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/30811847

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档