Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6167741
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T22:33:53+00:00 2026-05-23T22:33:53+00:00

I am loading an image from an URL on button click, and storing it

  • 0

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();
        }

    }
}

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 such
file or directory)

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

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T22:33:53+00:00Added an answer on May 23, 2026 at 10:33 pm

    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.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to load an image from url on a button click & to
I'm loading an image from a file, and I want to know how to
I was loading a Bitmap Image from a File. When I tried to save
I'm loading the image from the url by using LoadImage method and storing it
I have this code that pulls an image from an url and displays it
Normally if you were loading an image from a URL you would do the
Now I am on Three20.. I am using Two image source for loading image..That
I'm trying to load a gif image from a url into a java.util.image.Raster so
I am loading image from url coming from xml image not showing image CGRect
i m loading an image from an url and displaying it in imageView .i

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.