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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T07:37:44+00:00 2026-05-26T07:37:44+00:00

I want to Download An image from a remote server. But each time I

  • 0

I want to Download An image from a remote server. But each time I get A nullpointer exception.

Method For Conencting to Server

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();    
            Log.i("Download ", "Response: OK");
           }     
        else
            Log.i("Download ", "Response: NOK");
    }
    catch (Exception ex)
    {
        throw new IOException("Error connecting");            
    }
    return in;    
}

Method For Creating Bitmap

private Bitmap DownloadImage(String URL)
    {        
        Bitmap bitmap = null;
        InputStream in = null;        
    try {
        in = OpenHttpConnection(URL);
        Log.i("Download ", "InputStream Available: " +in.available());
        bitmap = BitmapFactory.decodeStream(in);
        Log.i("Download ", "Bitmap: " +bitmap.describeContents());
        in.close();
    } catch (IOException e1) {
        // TODO Auto-generated catch block
        e1.printStackTrace();
    }
    return bitmap;                
}

The null pointerException is thrown when I decodeStream, but when I use a different URL it works.

I run Apache on port 90. could this also have an effect if any.

  • 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-26T07:37:45+00:00Added an answer on May 26, 2026 at 7:37 am

    try this I hope is working.

    to connect with ftp use this code

    public FTPClient mFTPClient = null;
    
    public boolean ftpConnect(String host, String username,
                                  String password, int port)
        {
            try {
                mFTPClient = new FTPClient();
                // connecting to the host
                mFTPClient.connect(host, port);
    
                // now check the reply code, if positive mean connection success
                if (FTPReply.isPositiveCompletion(mFTPClient.getReplyCode())) {
                    // login using username & password
                    boolean status = mFTPClient.login(username, password);
                    return status;
                }
            } catch(Exception e) {
                Log.d(TAG, "Error: could not connect to host " + host );
            }
    
            return false;
        }
    

    to download file use this code

    public boolean ftpDownload(String srcFilePath, String desFilePath)
    {
        boolean status = false;
        try {
            FileOutputStream desFileStream = new FileOutputStream(desFilePath);;
            status = mFTPClient.retrieveFile(srcFilePath, desFileStream);
            desFileStream.close();
    
            return status;
        } catch (Exception e) {
            Log.d(TAG, "download failed");
        }
    
        return status;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to download an image from a remote server only if it is
I want to download an image from a remote server only if it is
I want to download an image from server, save it on the SD card,
I want to download image from server and display them into a layout EXAMPLE
I want to download image from url and store in sdcard's folder. If folder
what I want: Download a webpage from a server > Save content in a
I want to download a single frame of a video file from a server
I want to download an image from the 'net and set it as the
i want to display a image after downloading that image from a web-server i
I have an array url image from Json. I want to download, save and

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.