本文介绍了将值保存在文件中的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,简单的问题:如何使用android

hello , simple question : how to save ( register) a value in a file with android

推荐答案

private void save(String filename, String data)
{
    try
    {
        FileOutputStream fos = openFileOutput(filename, Context.MODE_PRIVATE);
        fos.write(data.getBytes());
        fos.close();
        toast("File successfully saved.");
    }
    catch (Exception ex)
    {
        toast("Error saving file: " + ex.getLocalizedMessage());
    }
}



您还可以找到 []特别教程非常有用。



问候,


You will also find this[^] particular tutorial very useful.

Regards,


这篇关于将值保存在文件中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-16 09:25