1. 首页
  2. 数据库
  3. 其它
  4. Android开发之文件操作模式深入理解

Android开发之文件操作模式深入理解

上传者: 2021-01-14 14:31:18上传 PDF文件 40.68KB 热度 9次
一、基本概念 代码如下: // 上下文对象 private Context context; public FileService(Context context) { super(); this.context = context; } // 保存文件方法 public void save(String filename, String fileContent) throws Exception { FileOutputStream fos = context.openFileOutput(filename, context.MODE_PRIVATE); fos.write(fileCont
用户评论