Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have trouble with download image from server in my android app. If i try to download image from https://www.morroccomethod.com/components/com_virtuemart/shop_image/category/resized/Trial_Sizes_4e4ac3b0d3491_175x175.jpg

My Code -

bitmap = BitmapFactory.decodeStream((InputStream) new URL(url)
                .getContent());

It return null means image not downloading on 4.0.3 but image downloading successfully on 2.2 I think there may be problem with os version.

Now i want anyone to help and guide me for the same.

share|improve this question
Check your InputStream returning null here with Android 4.0.3 or not and why it is not returning null in android 2.2 – Zoombie Aug 23 '12 at 6:28

4 Answers

up vote 1 down vote accepted

Write below code into your activity.java file's onCreate method after setcontentview().

if (android.os.Build.VERSION.SDK_INT > 9) {
    StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
    StrictMode.setThreadPolicy(policy);
}
share|improve this answer
@NandlalVirani yesterday i was solve my problem using this code. – Dipak Keshariya Aug 23 '12 at 7:09
Can you try this image URL in your code morroccomethod.com/components/com_virtuemart/shop_image/… ? – Nandlal Virani Aug 23 '12 at 7:14
yes, i was tried here and after post the solution. – Dipak Keshariya Aug 23 '12 at 7:23
Is it working on all version of android 2.2 , 2.3.3 , 4.0.3 ? – Nandlal Virani Aug 23 '12 at 7:28
yes, it's working in all versions. – Dipak Keshariya Aug 23 '12 at 7:30
show 5 more comments

Between 2.2 and 4.0.0 there were some changes regarding what you could do on the UI thread.

From your code snipit I can not tell what thread you are doing this on, but I would expect that this is the same problem.

Try loading your image using an AsyncTask, as you can not perform this http action on the UI thread.

share|improve this answer
I already did it using an AsyncTask.I am able to download same image from morroccomethod.com/mm/12.jpg but not from morroccomethod.com/components/com_virtuemart/shop_image/…. I think there filename problem with different android versions. – Nandlal Virani Aug 23 '12 at 6:40

Please confirm about Network on UI Thread Exception and make sure that you are using AsyncTask. Try the same code with AsyncTask, this will help you.

share|improve this answer
I already did it using an AsyncTask.I am able to download same image from morroccomethod.com/mm/12.jpg but not from morroccomethod.com/components/com_virtuemart/shop_image/…. I think there filename problem with different android versions – Nandlal Virani Aug 23 '12 at 6:41

Try this code.

try
        {
            imageView.setImageDrawable(grabImageFromUrl(imageUrl));
        }
        catch (Exception e)
        {
            Log.i("CATCH", "ImageDrawable");
            e.printStackTrace();
        }

and method code is::

private Drawable grabImageFromUrl(String imageUrlInput) throws MalformedURLException, IOException, Exception
    {
        return Drawable.createFromStream((InputStream)new URL(imageUrlInput).getContent(), "src");
    }

I have created this code for you, try it worked at my end...

import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URL;
import java.net.URLConnection;
import android.app.Activity;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.os.Bundle;
import android.widget.ImageView;

public class image extends Activity {
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        Bitmap bitmap = DownloadImage("https://www.morroccomethod.com/components/com_virtuemart/shop_image/category/resized/Trial_Sizes_4e4ac3b0d3491_175x175.jpg");
        ImageView img = (ImageView) findViewById(R.id.img);
        img.setImageBitmap(bitmap);
    }

    private InputStream OpenHttpConnection(String urlString) throws IOException {
        InputStream in = null;
        int response = -1;

        URL url = new URL(urlString);
        URLConnection conn = url.openConnection();

        if (!(conn instanceof HttpURLConnection))
            throw new IOException("Not an HTTP connection");

        try {
            HttpURLConnection httpConn = (HttpURLConnection) conn;
            httpConn.setAllowUserInteraction(false);
            httpConn.setInstanceFollowRedirects(true);
            httpConn.setRequestMethod("GET");
            httpConn.connect();
            response = httpConn.getResponseCode();
            if (response == HttpURLConnection.HTTP_OK) {
                in = httpConn.getInputStream();
            }
        } catch (Exception ex) {
            throw new IOException("Error connecting");
        }
        return in;
    }

    private Bitmap DownloadImage(String URL) {
        Bitmap bitmap = null;
        InputStream in = null;
        try {
            in = OpenHttpConnection(URL);
            bitmap = BitmapFactory.decodeStream(in);
            in.close();
        } catch (IOException e1) {
            // TODO Auto-generated catch block
            e1.printStackTrace();
        }
        return bitmap;
    }
}
share|improve this answer
Hope if it works for you bro. – Harpreet Aug 23 '12 at 6:45
Using your code , I am able to download same image from morroccomethod.com/mm/12.jpg but not from morroccomethod.com/components/com_virtuemart/shop_image/…. I think there filename problem . – Nandlal Virani Aug 23 '12 at 6:52
If the url is showing the image in browser than it is able to be downloaded but you still talk to its owner or developer, mite having issue with the name. – Harpreet Aug 23 '12 at 7:00
owner cant change file name on server because it also reference other website.So is it possible in android to do some operation on URL like encoding/decoding to download it without changing name of file on server ? – Nandlal Virani Aug 23 '12 at 7:04
check the added code for you. It worked at my end. – Harpreet Aug 23 '12 at 7:45
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.