繁体   English   中英

将数据保存在SD卡上

[英]saving data on sd-card

我正在编写一个小游戏,我想在SD卡上保存得分和音量(已启用或已禁用),这两个函数的代码是:

public static void load(FileIO files) {
    BufferedReader in = null;
    try {
        in = new BufferedReader(new InputStreamReader(
                files.readFile(".save")));
        soundEnabled = Boolean.parseBoolean(in.readLine());
        for (int i = 0; i < 5; i++) {
            highscores[i] = Integer.parseInt(in.readLine());
        }
    } catch (IOException e) {
        // :( It's ok we have defaults
    } catch (NumberFormatException e) {
        // :/ It's ok, defaults save our day
    } finally {
        try {
            if (in != null)
                in.close();
        } catch (IOException e) {
        }
    }
}

// ------------------------

public static void save(FileIO files) {
    BufferedWriter out = null;
    try {
        out = new BufferedWriter(new OutputStreamWriter(
                files.writeFile(".save")));
        out.write(Boolean.toString(soundEnabled));
        for (int i = 0; i < 5; i++) {
            out.write(Integer.toString(highscores[i]));
        }

    } catch (IOException e) {
    } finally {
        try {
            if (out != null)
                out.close();
        } catch (IOException e) {
        }
    }
}

当程序运行时,此代码可以,但是如果我重新启动设备,分数会丢失..您知道为什么吗?

谢谢!!

ps:FileIO类是:

  public class AndroidFileIO implements FileIO {
    Context context;
    AssetManager assets;
    String externalStoragePath;

    public AndroidFileIO(Context context) {
       this.context = context;
       this.assets = context.getAssets();
       this.externalStoragePath = Environment.getExternalStorageDirectory()
            .getAbsolutePath() + File.separator;
    }

    public InputStream readAsset(String fileName) throws IOException {
       return assets.open(fileName);
    }

    public InputStream readFile(String fileName) throws IOException {
       return new FileInputStream(externalStoragePath + fileName);
    }

    public OutputStream writeFile(String fileName) throws IOException {
       return new FileOutputStream(externalStoragePath + fileName);
    }

    public SharedPreferences getPreferences() {
       return PreferenceManager.getDefaultSharedPreferences(context);
    }
 }

这里有两个问题。 首先,out.write不会在每个调用的末尾插入换行符,您必须手动执行。 所以发生的事情是,当您在cal中执行readline来解析布尔值时,您实际上正在使用文件中的所有数据。 其次,您需要在离开该函数之前刷新并关闭文件,以确保您没有在缓冲区中保留任何数据。

这是应该工作的保存重写:

public static void save(FileIO files) {
BufferedWriter out = null;
try {
    out = new BufferedWriter(new OutputStreamWriter(
            files.writeFile(".mrnom")));
    out.write(Boolean.toString(soundEnabled));
    out.write("\n");
    for (int i = 0; i < 5; i++) {
        out.write(Integer.toString(highscores[i]));
        out.write("\n");

    }
    out.flush();
    out.close();
} catch (IOException e) {
} finally {
    try {
        if (out != null)
            out.close();
    } catch (IOException e) {

    }
}
}

我是第一次编程,但是iv使用共享的首选项解决了这个问题。 这样,您可以避免在更新应用程序时丢失数据。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM