-5

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

どんな助けでも大歓迎です。

4

1 に答える 1

0

outの値の名前でFileOutputStream作成または開かれたファイルにビットマップを保存するために作成されるです。context.openFileOutputname

于 2016-09-05T16:46:10.070 に答える