0
我正在使用phonegap。我已經創建了一個插件,但現在我需要將圖像保存在SD卡上,並給出圖像url。我如何保存圖像?我嘗試使用FileOutputStream來保存它,並將其保存在SD卡上,但是我的應用程序在通過html標籤進行鏈接時未顯示圖像,所以我對該文件做了拉取請求,並在計算機上打開它,我認爲圖像已損壞或因爲無法正確打開而導致圖像損壞。艾米我使用錯誤的流?我應該使用哪一個?謝謝。在android中保存圖像
編輯:我忘了提,在頂層的一個zip文件,所以之前我救它,我像做
FileInputInputStream inputStream = null;
ZipInputStream zipInputStream = null;
inputStream = new FileInputStream(zipFilePath);
BufferedInputStream bufferedInputStream = new BufferedInputStream(inputStream);
zipInputStream = new ZipInputStream(bufferedInputStream);
ZipEntry entry = zipInputStream.getNextEntry();
while(entry != null){
String data = readFile(filePath); //uses zis.read(byteArra,offset,length) to read. Returns the result in a String
saveFile(newFilePath,data); //uses FileOutputStream to save via .write(byte[]) method
}