下面的代碼從某個位置獲取圖像 - 並使該圖像壓縮圖像。 但我需要使壓縮映像成爲文件...我該怎麼做?如何將OutputStream轉換爲文件?
File compressFile = null;
File file = new File("MyFile");
OutputStream fOut = new FileOutputStream(file);
if(image.compress(Bitmap.CompressFormat.PNG, 100, fOut))
{
fOut.flush();
fOut.close();
compressFile = ??? // I need here to make the OutputStream to be back to file.
}
什麼是第一線? – quantumpotato
它沒有用,現在我刪除它。 – Caner