简单 "saving the file" 代码的说明

Explanation for a simple "saving the file" code

我想详细了解 Android 个应用。
所以,我想要 out=context.openFileOutput 参数的解释。

public void saveImage(Context context, Bitmap b,String name,String extension){
name=name+"."+extension;
FileOutputStream out;
try {
    out = context.openFileOutput(name, Context.MODE_PRIVATE);
    b.compress(Bitmap.CompressFormat.JPEG, 90, out);
    out.close();
} catch (Exception e) {
    e.printStackTrace();
}
}

任何帮助将不胜感激。

out是为了将Bitmap保存到context.openFileOutput创建或打开的文件中而创建的FileOutputStream,其名称为[=13] =]