Google と StackOverflow でこのトピックについて見つけたすべてを検索して試しましたが、とにかく機能させることができませんでした。このコードを持っていますが、FATAL EXCEPTION がスローされます。私はAndroid Rookieなので、何か間違っていると思います。助けてください^^
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();