Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
  • Android How to upload image into the server using Volley library

    • 0
    • 0
    • 0
    • 7
    • 0
    • 0
    • 0
    • 26.3k
    Answer it
    1. I want to upload my captured images from camera to my 000webhost.com server using the volley library.
    2.  
    3. I want where I am getting wrong and suggest me full code solution.
    4.  
    5. I have tried to write the code, But its not working.

    I am getting error as follows:

    1. D/URL http://plantnow.net16.net/uploaded.php
    2. D/ERROR Error [com.android.volley.NoConnectionError: java.net.UnknownHostException:

    My PHP uploaded.php look like this. I want to s tore the images and imagepath in server.

    1. <?php
    2. if ($-SERVER['REQUEST-METHOD'] == 'POST') {
    3. $image = $&#95;POST['image'];
    4. require&#95;once('dbconnect.php');
    5. $sql ="SELECT id FROM images ORDER BY id ASC";
    6. $res = mysqli-query($con,$sql);
    7. $id = 0;
    8.  
    9. while ($row = mysqli-fetch&#95;array($res)) {
    10. $id = $row['id'];
    11. }
    12.  
    13. $path = "uploadedimages/$id.jpeg";
    14. $actualpath = "http://plantnow.net16.net/$path";
    15. $sql = "INSERT INTO images (image) VALUES ('$actualpath')";
    16.  
    17. if (mysqli-query($con,$sql)) {
    18. file-put-contents($path,base64-decode($image));
    19. echo "Successfully Uploaded";
    20. }
    21.  
    22. mysqli-close($con);
    23. } else {
    24. echo "Error";
    25. }
    26. ?>

    My main activity with volley code as follows:

    1. public class MainActivity extends Activity {
    2. ProgressDialog prgDialog;
    3. String encodedString;
    4. String fileName;
    5. private static int RESULT&#95;LOAD&#95;IMG = 1;
    6. private Button buttonUploadPhoto;
    7. private ImageView myimage;
    8.  
    9. @Override
    10. protected void onCreate(Bundle savedInstanceState) {
    11. super.onCreate(savedInstanceState);
    12. setContentView(R.layout.activity&#95;main);
    13. prgDialog = new ProgressDialog(this);
    14. // Set Cancelable as False
    15. prgDialog.setCancelable(false);
    16.  
    17. buttonUploadPhoto = (Button) findViewById(R.id.uploadPhoto);
    18. myimage = (ImageView) findViewById(R.id.imgView);
    19.  
    20.  
    21.  
    22. buttonUploadPhoto.setOnClickListener(new View.OnClickListener() {
    23.  
    24. @Override
    25. public void onClick(View v) {
    26.  
    27. uploadImage();
    28.  
    29. }
    30. });
    31.  
    32. }
    33.  
    34. public void loadImagefromGallery(View view) {
    35. // Create intent to Open Image applications like Gallery, Google Photos
    36. Intent galleryIntent = new Intent(Intent.ACTION&#95;PICK,
    37. android.provider.MediaStore.Images.Media.EXTERNAL&#95;CONTENT&#95;URI);
    38. // Start the Intent
    39. startActivityForResult(galleryIntent, RESULT&#95;LOAD&#95;IMG);
    40. }
    41.  
    42. // When Image is selected from Gallery
    43. @Override
    44. protected void onActivityResult(int requestCode, int resultCode, Intent data) {
    45. super.onActivityResult(requestCode, resultCode, data);
    46. if (requestCode == RESULT&#95;LOAD&#95;IMG && resultCode == RESULT&#95;OK && null != data) {
    47. Uri selectedImage = data.getData();
    48. String[] filePathColumn = { MediaStore.Images.Media.DATA };
    49. Cursor cursor = getContentResolver().query(selectedImage, filePathColumn, null, null, null);
    50. cursor.moveToFirst();
    51. int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
    52. String picturePath = cursor.getString(columnIndex);
    53. cursor.close();
    54.  
    55. String fileNameSegments[] = picturePath.split("/");
    56. fileName = fileNameSegments[fileNameSegments.length - 1];
    57.  
    58. Bitmap myImg = BitmapFactory.decodeFile(picturePath);
    59. myimage.setImageBitmap(myImg);
    60. ByteArrayOutputStream stream = new ByteArrayOutputStream();
    61. // Must compress the Image to reduce image size to make upload easy
    62. myImg.compress(Bitmap.CompressFormat.PNG, 50, stream);
    63. byte[] byte&#95;arr = stream.toByteArray();
    64. // Encode Image to String
    65. encodedString = Base64.encodeToString(byte&#95;arr, 0);
    66.  
    67. uploadImage();
    68. }
    69. }

    /** * API call for upload selected image from gallery to the server */ public void uploadImage() {

    1. RequestQueue rq = Volley.newRequestQueue(this);
    2. String url = "http:/plantnow.net16.net/uploaded.php";
    3. Log.d("URL", url);
    4. StringRequest stringRequest = new StringRequest(Request.Method.POST,
    5. url, new Response.Listener<String>() {
    6.  
    7. @Override
    8. public void onResponse(String response) {
    9. try {
    10. Log.e("RESPONSE", response);
    11. JSONObject json = new JSONObject(response);
    12.  
    13. Toast.makeText(getBaseContext(),
    14. "The image is upload", Toast.LENGTH&#95;SHORT)
    15. .show();
    16.  
    17. } catch (JSONException e) {
    18. Log.d("JSON Exception", e.toString());
    19. Toast.makeText(getBaseContext(),
    20. "Error while loadin data!",
    21. Toast.LENGTH&#95;LONG).show();
    22. }
    23.  
    24. }
    25.  
    26. }, new Response.ErrorListener() {
    27. @Override
    28. public void onErrorResponse(VolleyError error) {
    29. Log.d("ERROR", "Error [" + error + "]");
    30. Toast.makeText(getBaseContext(),
    31. "Cannot connect to server", Toast.LENGTH&#95;LONG)
    32. .show();
    33. }
    34. }) {
    35. @Override
    36. protected Map<String, String> getParams() {
    37. Map<String, String> params = new HashMap<String, String>();
    38.  
    39. params.put("image", encodedString);
    40. params.put("filename", fileName);
    41.  
    42. return params;
    43.  
    44. }
    45.  
    46. };
    47. rq.add(stringRequest);
    48. }
    49.  
    50. @Override
    51. protected void onDestroy() {
    52. // TODO Auto-generated method stub
    53. super.onDestroy();
    54. // Dismiss the progress bar when application is closed
    55. if (prgDialog != null) {
    56. prgDialog.dismiss();
    57. }
    58. }

 7 Answer(s)

  • Hello Bharat,

    Please check line no 2 of your code in uploadImage() method,

    error 
    String url = "http:/plantnow.net16.net/uploaded.php"; 
    
    correction 
    String url = "http://plantnow.net16.net/uploaded.php"; 
    

    please find the attached working code that i tested with the url you provided on my server its working but in case of the server you are using i am getting the following response.

    Error

    <!-- Hosting24 Analytics Code -->
    <script type="text/javascript" src="http://stats.hosting24.com/count.php"></script>
    <!-- End Of Analytics Code -->
    

    that seems the part of php end that is not allowing to upload the image.

  • Hi Bharat,

    Please mark the answer as correct if you find it helped you. For your second query that is uploading image from camera its similar as gallery you need to change the request code and open camera then after just do the same thing, will update you with the code soon.

    Enjoy codeing :)

  • Look ,We have two methods for uploading images to server

    1. Using Multipart request.

    2. Sending the image String to server.

    In volley we can use both of them. But your case is second one.

    This is Volley's post request that you are using and it should work .

    Are you using proper internet permission in your manifest?

  • Devesh,

    My php is working fine. My question is How to upload images using volley. And I have already decoded image.

    How to store captured image and after uploading to server, it should show message "image uploaded"

  • Hello bharat , your code is converting the image into encoded string and Sending that String to server.

    You need to decode that String in PHP Script.

    <php>
    // $data is post image string 
    $data = base64&#95;decode($data);
    </php>
    

    Reference:

    http://php.net/manual/en/function.imagecreatefromstring.php

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Reset Password
Fill out the form below and reset your password: