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 6633943
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T22:52:19+00:00 2026-05-25T22:52:19+00:00

I want to read an image from a this URL photo and I’m using

  • 0

I want to read an image from a this URL photo

and I’m using the following code

 public static Bitmap DownloadImage(String URL)
{
    Bitmap bitmap=null;
    InputStream in=null;
    try {
        in=networking.OpenHttpConnection("http://izwaj.com/"+URL);
        BitmapFactory.Options options=new BitmapFactory.Options();
        options.inSampleSize=8;

        bitmap=BitmapFactory.decodeStream(in, null, options);
        in.close();
    } catch (Exception e) {
        // TODO: handle exception
    }
    return bitmap;
}

 public class Networking {
public 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;

        }

The bitmap always returned to me null.. I used also other functions found on the internet. all returned the bitmap as null value :S

  • 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-25T22:52:19+00:00Added an answer on May 25, 2026 at 10:52 pm

    use this function it may help you.

    public Bitmap convertImage(String url)
         {
    
            URL aURL = null;
            try 
           {
            final String imageUrl =url.replaceAll(" ","%20");
            Log.e("Image Url",imageUrl);
            aURL = new URL(imageUrl);
            URLConnection conn = aURL.openConnection();
            InputStream is = conn.getInputStream(); 
            //@SuppressWarnings("unused")
            BufferedInputStream bis = new BufferedInputStream(is); 
            Bitmap bm = BitmapFactory.decodeStream(new PatchInputStream(bis)); 
            if(bm==null)
            {}
            else
           Bitmap bit=Bitmap.createScaledBitmap(bm,72, 72, true);//mention size here
    
            return bit;
    
           } 
    
    
            catch (IOException e) 
            {
               Log.e("error in bitmap",e.getMessage());
              return null;
           }
    
    
          }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to set page backgroudImage using jQuery. I wrote this code but it
I have 52 images that is coming from web URL.I want to display this
I want to read and save some data from this rss feed to in
I have the following code which takes an improperly saved Image from the database
I am trying to do read a PLIST from URL to a NSMutableDictionary. Code
I'm using SimpleXML to extract images from a public feed @ Flickr. I want
I want to download image from internet :: I refer this and try this
I have a specific object with image data. And I want read/write images (in
I have an image and want to read the pixel values in a particular
I want to make the joomla articles intro image to behave like the read

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.