0

我正在尝试以一种允许用户退出应用程序,甚至关闭手机,但在使用应用程序时仍可以访问此字符串的方式,将字符串保存到/从内部存储中加载。

当我退出应用程序并重新进入时,它不会加载我之前存储的字符串。即使我重新启动手机,我也需要它来加载以前的字符串。这是我到目前为止所拥有的:

EditText sharedData;
TextView dataResults;
FileOutputStream fos;
String FILENAME = "InternalString";

protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.sharedpreferences);
    setupVariables();
}

private void setupVariables() {
    // TODO Auto-generated method stub
    sharedData = (EditText) findViewById(R.id.editText_SharedPrefs);
    dataResults = (TextView) findViewById(R.id.textView_LoadSharedPrefs);
    Button save = (Button) findViewById(R.id.button_save);
    Button load = (Button) findViewById(R.id.button_load);
    save.setOnClickListener(this);
    load.setOnClickListener(this);
    try {
        fos = openFileOutput(FILENAME, Context.MODE_PRIVATE);
        fos.close();
    } catch (FileNotFoundException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    } catch (IOException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }
}

@Override
public void onClick(View v) {
    // TODO Auto-generated method stub
    switch (v.getId()) {
    case R.id.button_save:
        String data = sharedData.getText().toString();
        try {
            fos = openFileOutput(FILENAME, Context.MODE_PRIVATE);
            fos.write(data.getBytes());
            fos.close();
        } catch (FileNotFoundException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        break;
    case R.id.button_load:
        String collected = null;
        FileInputStream fis = null;
        try {
            fis = openFileInput(FILENAME);
            byte[] dataArray = new byte[fis.available()];
            while(fis.read(dataArray) != -1){
                collected = new String(dataArray);
            }
            dataResults.setText(collected);
        } catch (FileNotFoundException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } finally {
            try {
                fis.close();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
        break;
    }
}
4

1 回答 1

0

根据您使用的“字符串”类型,您应该使用 SharedPreferences 而不是写入文件......除非它是大量数据。

getSharedPreferences(getPackageName() , MODE_PRIVATE).edit().putString("myString").commit();

这将通过电话电源循环持续存在。但是,如果您卸载该应用程序,它将丢失(这可能是一件好事)。

这是向您开放的所有各种数据保存可能性的 Android 文档...

在 Android 上保存东西

于 2012-07-23T00:27:57.163 回答