-5

我想了解有关 Android 应用程序的更多信息。
所以,我想解释一下out=context.openFileOutput arguments 。

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();
}
}

任何帮助将不胜感激。

4

1 回答 1

0

outFileOutputStream为了将位图保存到创建或打开的文件中而创建的context.openFileOutput,其名称为name

于 2016-09-05T16:46:10.070 回答