Android开发之文件操作模式深入理解
一、基本概念 代码如下: // 上下文对象 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
用户评论