Android Create a HTTP Request without using any third party library

Updated 26 October 2021

Save

In this blog, we will learn how to create a HTTP Request without using any library.

In Mobile App Development , we usually depend on a server and to make a connection with the server, we need to create http calls.
For this purpose we use networking libraries in our project so that we can easily create the http request for our use.
Some of the popular libraries are Volley, Retrofit etc.

Of course, these libraries help us a lot and make our work easy and our calls faster.

But what if we don’t wan to use any of these libraries.

Let us see how to do this :

APPROACH :

  1. You need to create an Async Task that will be running on background thread.
    P.S : The Android developers have restricted the HTTP Requests to be working on background thread.
    If you get to know any other method than Async Task , please let me know in the comments below.
  2. Pass on url and your data in the execute method of the Async Task you just created as arguments.
  3. In doInBackground() method of your Async Task extract the url and data from the arguments.
  4. Create a new Object of the URL class by passing the url of your HTTP Request.
  5. Create a Object of HttpURLConnection/HttpsURLConnection and assign it the value returned  by the openConnection() method of the URL object you created.
    Note : You need to type cast the value returned by openConnection() method into your desired HttpURLConnection/HttpsURLConnection Object.
  6. On this object set the request method Type (e.g POST , GET,PUT) by calling the function setRequestMethod() and passing the name of the request method as the argument.
  7. If you need to add headers to your request you can simply do so by calling the function setREquestProperty() and passing the header name as the first key and value as the second key.
  8. Get the output stream of your HttpURLConnection/HttpsURLConnection object.
  9. Create a new object of OutputStreamWriter by passing in the output stream obtained above.
  10. Write the data with the help of write function of the OutpuStreamWriter object you just created.
  11. Close the stream and close the connection as you have send the request.

CODE :

AsyncTask for the request :

Calling the Async Task :

That’s all you have created your first HTTP request without using any library.

Keep coding and Keep Sharing 🙂

author
. . .

Leave a Comment

Your email address will not be published. Required fields are marked*


12 comments

  • F.Selin
    • anchit (Moderator)
  • Aditya
    • anchit (Moderator)
  • Ian Paulo
    • anchit (Moderator)
  • Ian Paulo
  • Daneil
    • anchit (Moderator)
  • William Menezes
  • William Menezes
    • anchit (Moderator)
  • Start a Project


      Message Sent!

      If you have more details or questions, you can reply to the received confirmation email.

      Back to Home