Android的 - 保存从URL下载的图像到SD卡 [英] Android - Saving a downloaded image from URL onto SD card

查看:171
本文介绍了Android的 - 保存从URL下载的图像到SD卡的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我从按钮点击的URL加载图像,并把它作为一个位图。现在我想知道如何保存下载的图像转换成SD卡,以及在系统中。

I am loading an image from an URL on button click, and storing it as a Bitmap. Now i want to know how to save that downloaded image into sd card as well as in system.

我试图做到这一点通过以下方式:

I attempted to do it the following way:

package com.v3.thread.fetchImage;

import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URL;
import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.os.Environment;
import android.provider.MediaStore;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.ImageView;
import android.widget.Toast;

public class MainThreadActivity extends Activity {
    ImageView imView;
    EditText ed1;
    Bitmap bmImg;
    Button bt, btSave;
    String imageUrl = "";
    int visibilty = 0;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle icicle) {
        super.onCreate(icicle);
        setContentView(R.layout.main);
        ed1 = (EditText) findViewById(R.id.edURL);
        btSave = (Button) findViewById(R.id.btnSave);

        bt = (Button) findViewById(R.id.btnLoad);
        bt.setOnClickListener(getImgListener);

        imView = (ImageView) findViewById(R.id.imview);
        Log.i("img already downloaded", "img");
        btSave.setOnClickListener(new View.OnClickListener() {
            public void onClick(View arg0) {
                Log.i("img url", "Under Save");
                saveImage();
            }
        });
    }

    View.OnClickListener getImgListener = new View.OnClickListener() {

        public void onClick(View view) {
            // TODO Auto-generated method stub
            imageUrl = ed1.getText().toString();
            if (imageUrl.equals(""))

                Toast.makeText(getApplicationContext(), "Enter an URL first",   1000).show();       
downloadFile(imageUrl);
            Log.i("im url", imageUrl);
            btSave.setVisibility(visibilty);
        }

    };

    void downloadFile(String fileUrl) {
        URL myFileUrl = null;
        try {
            myFileUrl = new URL(fileUrl);
        } catch (MalformedURLException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        try {
            HttpURLConnection conn = (HttpURLConnection) myFileUrl
                    .openConnection();
            conn.setDoInput(true);
            conn.connect();
            InputStream is = conn.getInputStream();
            Log.i("im connected", "Download");
            bmImg = BitmapFactory.decodeStream(is);

            imView.setImageBitmap(bmImg);
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
    }

    void saveImage() {
        File filename;
        try {
            String path = Environment.getExternalStorageDirectory().toString();
            Log.i("in save()", "after mkdir");
            new File(path + "/mvc/mvc").mkdir();
            filename = new File(path + "/mvc/mvc/var3.jpg");
            Log.i("in save()", "after file");
            FileOutputStream out = new FileOutputStream(filename);
            Log.i("in save()", "after outputstream");
            bmImg.compress(Bitmap.CompressFormat.JPEG, 90, out);
            out.flush();
            out.close();
            Log.i("in save()", "after outputstream closed");
            MediaStore.Images.Media.insertImage(getContentResolver(),
                    filename.getAbsolutePath(), filename.getName(),
                    filename.getName());
            bt.setText("Saved...");
            Toast.makeText(getApplicationContext(),
                    "File is Saved in  " + filename, 1000).show();
        } catch (Exception e) {
            e.printStackTrace();
        }

    }
}

从URL图像的加载工作,但是当我preSS保存按钮来保存它,它抛出异常

Loading of image from URL is working, but when I press the save button to save it, it throws the exception

java.io.FileNotFoundException:/mnt/sdcard/mvc/mvc/var3.image(No等   文件或目录)

java.io.FileNotFoundException: /mnt/sdcard/mvc/mvc/var3.image(No such file or directory)

那么,如何将图像保存到SD卡是否正确?

So how do I save the image to the SD card correctly?

推荐答案

您需要先创建要在其中创建文件的目录和子目录。 我看到你所使用的的mkdir()方法。尝试mkdirs(),它应该工作。

You will need to first create the directories and sub-directories where you want to create the files. I see that you used the mkdir() method. Try mkdirs(), and it should work.

这篇关于Android的 - 保存从URL下载的图像到SD卡的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆