我已经搜索并尝试了我在 Google 和 StackOverflow 上找到的关于这个主题的所有内容,但我没有找到让它起作用的方法。我有这段代码,但它给了我一个致命的例外。我认为,因为我是 Android 新手,所以我做错了一些事情。请帮帮我^^
public void svgPhoto() throws IOException {
String dir = Environment.getExternalStorageDirectory().toString();
OutputStream fos = null;
File file = new File(dir,"downloadImage.JPEG");
Bitmap bm =BitmapFactory.decodeFile("http://perlbal.hi-pi.com/blog-images/3278/gd/1242316719/Chat-chat.jpg");
fos = new FileOutputStream(file);
BufferedOutputStream bos = new BufferedOutputStream(fos);
bm.compress(Bitmap.CompressFormat.JPEG, 50, bos);
bos.flush();
bos.close();