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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T21:38:00+00:00 2026-05-30T21:38:00+00:00

I’m trying to retrieve image file from my local server. Here is my (very

  • 0

I’m trying to retrieve image file from my local server.

Here is my (very simple) php request :

get_image.php

<?php
header("Content-type: image/*");

$images_folder = "uploads/";
$image_name = $_GET['image_id'];

$image_url = $images_folder . $image_name;

if (!readfile($image_url))
    echo "Error loading file";
?>

If I run this in a browser :

draw_image.php

<img src="get_image.php?image_id=<?php echo $_POST["image_id"]?>" alt="Image"/>

I get my picture drawn.

Now, how to retrieve this image in android application ?
Here is my code for the moment :

public void         GetUserPicture() throws Exception,  NumberFormatException
{
    try
    {
        String str_image_id = Utils.FromStringToMd5(askme_user.GetLogin() + Utils.SALT);

        HttpPost post = new HttpPost("http://192.168.0.7/askme/draw_image.php");

        List<NameValuePair> php_question = new ArrayList<NameValuePair>();
        php_question.add(new BasicNameValuePair("image_id", str_image_id));

        post.setEntity(new UrlEncodedFormEntity(php_question, "UTF-8"));

        HttpClient client = new DefaultHttpClient();
        HttpResponse response = client.execute(post);
        HttpEntity res_entity = response.getEntity();

        Log.i(TAG, "Status line : " + response.getStatusLine());
        if (res_entity != null) Log.i(TAG, EntityUtils.toString(res_entity));
        if (res_entity != null) res_entity.consumeContent();
    }
    catch (Exception e)
    {
        Log.e("[GET REQUEST]", "Network exception");
    }
}

and here is the current log i’m receving from HttpResponse :

Status line : HTTP/1.1 200 OK
<img src="get_image.php?image_id=971c4623a86a4cbac2f1deffaf3c40" alt="Image"/>

I’m kind of stuck here, I don’t know what to to next…


EDIT : Thanks to caner, here is my final code,

String url = "http://192.168.0.7/askme/get_image.php";
if (!url.endsWith("?"))
    url += "?";

String str_image_id = Utils.FromStringToMd5(askme_user.GetLogin() + Utils.SALT);

List<NameValuePair> params = new LinkedList<NameValuePair>();
params.add(new BasicNameValuePair("image_id", str_image_id));

String str_params = URLEncodedUtils.format(params, "UTF-8");

url += str_params;

HttpClient client = new DefaultHttpClient();
HttpGet request = new HttpGet();
request.setURI(new URI(url));
HttpResponse response = client.execute(request);
InputStream is_image = response.getEntity().getContent();
Drawable drawable = Drawable.createFromStream(is_image, "user_picture");

return drawable;
  • 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-30T21:38:02+00:00Added an answer on May 30, 2026 at 9:38 pm

    Change HttpPost to HttpGet

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

Sidebar

Related Questions

I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
I have just tried to save a simple *.rtf file with some websites and
I have a string like this: La Torre Eiffel paragonata all&#8217;Everest What PHP function
I am trying to render a haml file in a javascript response like so:
I'm trying to create an if statement in PHP that prevents a single post
I am trying to understand how to use SyndicationItem to display feed which is
Basically, what I'm trying to create is a page of div tags, each has
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I want to count how many characters a certain string has in PHP, but
I would like to count the length of a string with PHP. The string

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.