android存储的理解
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android存储的理解相关的知识,希望对你有一定的参考价值。
anroid内部操作只需要函数提供文件名,and progremming could encoutage the file_title only. dont need inputStream /outputStream any more. could get the input/outputStream.
File file=new File(context.getFileDir(),filename);
if(!file.exists()){
file.createNewFile();
}
//or
OutputStream outputStream=operFileOutput(filename,Context.MODE_PRIVATE);
outputStream.write(string.getBytes());
outputStream.close();
以上是关于android存储的理解的主要内容,如果未能解决你的问题,请参考以下文章
如何将本地存储中的 JSON 对象添加到 Android Studio 上的片段列表
java 登录过程 - android片段,异步任务登录,Asp.net控制器,存储库
Android 上的 Kotlin:如何在片段中使用数据库中的 LiveData?