Альтернатива ImageIO. для Android
Код:
public static Image loadImage(String URL) {
try {
String fileName = URL;
BufferedImage img = ImageIO.read(new URL);
File file = new File(fileName);
if (!file.exists()) {
file.createNewFile();
ImageIO.write(img, URL, file);
}
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
try {
String fileName = URL;
BufferedImage img = ImageIO.read(new URL);
File file = new File(fileName);
if (!file.exists()) {
file.createNewFile();
ImageIO.write(img, URL, file);
}
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
- или хотя бы сохранить как файл от lightstar, 11 октября 2012 года