0
I’m saving my image in internal memory using this code
public String baixarImagem(String urlC, String nomeImagem) throws MalformedURLException {
URL url = new URL(urlC);
InputStream input = null;
FileOutputStream output = null;
try {
String outputName = nomeImagem + ".jpg";
input = url.openConnection().getInputStream();
output = context.openFileOutput(outputName, Context.MODE_PRIVATE);
int read;
byte[] data = new byte[1024];
while ((read = input.read(data)) != -1)
output.write(data, 0, read);
return outputName;
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if (output != null)
output.close();
if (input != null)
input.close();
} catch (IOException e) {
e.printStackTrace();
}
}
return null;
}
But I don’t know how to recover this saved image, I don’t even know if this code is actually saving the image. Can someone tell me if this code is right and show me how to recover the image