Android Volley library gets JSON data over the network

Source: Internet
Author: User

Content of this article
    • What is the Volley library
    • What can volley do?
    • Volley architecture
    • Demo Volley library gets JSON data over the network
    • Resources

Android about network operation generally will introduce HttpClient and httpconnection these two packages. The former is the Apache Open Source Library, the latter is the Android comes with the API. For enterprise applications, you will typically choose to use an already encapsulated HTTP framework. More popular are volley, android-async-http, retrofit, Okhttp, Androidquery, Androidasync and so on. They have different characteristics, different frameworks have various efficiency, now Google launched the official Internet Communication Library for Android platform volley, can make network communication faster, simpler, more robust, volley in providing high-performance network communication capabilities, while It also provides good support for network picture loading, which can meet the needs of the simple REST client completely. In addition, volley is highly scalable and can customize your own network requests as needed.

What is the Volley library

Volley is a library of processing and caching network requests released by Ficus kirpatrick in Gooogle I/O 2013, making network communication faster, simpler, and more robust. The origin of the volley name is a burst or emission of many things or a large amount at once. In the Gooogle I/O 2013 speech, the picture is a fire-fired arrow. As shown in 1.

Figure 1 Gooogle I/O volley

Volley manages the processing and caching of network requests, saving developers valuable time and writing the same network call/cache code over and over again. One of the benefits of less repeating code is that it reduces bugs, which is what all developers expect.

The so-called "write the same network call/cache code again and again" is asynctask and the logic/code you write to get the response through the Web API and display it. We must take care of progressbar/progressdialog within the ProgressBar () and OnPostExecute () methods. Although this is not a daunting task, it is boring and even tiring, although I have defined the Basetask class to manage the display/cancellation of progressbar/progressdialog and more. Now, volley is a powerful tool for replacing Asynctask.

What can volley do?

The volley is suitable for small and fast data transmission, especially for the following two scenarios:

    • JSON Object
    • Picture loading

Volley Advantages:

  1. Volley can automatically schedule all network requests. This means that volley will take care of all network requests that your APP takes to get a response or picture from the Web.
  2. The volley provides transparent disk and memory caching.
  3. The volley provides a powerful cancellation request API. This means that you can cancel a separate request, or you can set the block of the cancellation request (can be multiple) or range.
  4. The volley offers powerful customization capabilities.
  5. Volley provides debugging and tracing tools.

Volley architecture

Volley uses the line pool as the infrastructure, mainly divided into the main thread, the cache thread and the network thread. Both the main thread and the cache thread have only one, and the networkdispatcher thread can have multiple, which solves the problem of parallelism.

Figure 2 Volley architecture

Demo Volley library gets JSON data over the network

Download the demo, import the Volley library and demo project into Eclipse, and add the volley library to the demo project. The program runs as shown in result 3:

Figure 3 Demo Volley library gets JSON data over the network

Get weather conditions in Beijing by accessing the JSON interface provided by the National weather volley.

    • Http://www.weather.com.cn/data/sk/101010100.html
    • Http://www.weather.com.cn/data/cityinfo/101010100.html
    • Http://m.weather.com.cn/data/101010100.html

Among them,101010100 represents Beijing.

The Activity_main.xml file is just a TextView control, a Progreebar control, slightly, the core code is as follows:

Package com.example.volleybasicexample;
Import Org.json.JSONObject;
Import Com.android.volley.Request;
Import Com.android.volley.RequestQueue;
Import Com.android.volley.Response;
Import Com.android.volley.VolleyError;
Import Com.android.volley.toolbox.JsonObjectRequest;
Import Com.android.volley.toolbox.Volley;
Import android.app.Activity;
Import Android.os.Bundle;
Import Android.view.View;
Import Android.widget.TextView;
 Public class Mainactivity extends Activity {
    Private TextView Txtdisplay;
    @Override
    protected void onCreate (Bundle savedinstancestate) {
        Super.oncreate (savedinstancestate);
        Setcontentview (R.layout.activity_main);
        Txtdisplay = (TextView) Findviewbyid (R.id.txtdisplay);
        Requestqueue queue = Volley.newrequestqueue (this);
        "http://www.weather.com.cn/data/sk/101010100.html";
        New Jsonobjectrequest (
                null,
                New Response.listener<jsonobject> () {
                    @Override
                     Public void Onresponse (jsonobject response) {
                        TODO auto-generated Method Stub
                        Txtdisplay.settext ("Response = +" + response.tostring ());
                        Findviewbyid (R.ID.PROGRESSBAR1)
                                . setvisibility (View.gone);
                    }
                New Response.errorlistener () {
                    @Override
                     Public void onerrorresponse (volleyerror error) {
                        TODO auto-generated Method Stub
                    }
                });
        Queue.add (jsobjrequest);
    }
}

Resources
    • Android Async HTTP Clients:volley vs Retrofit
    • Android Volley

Download Demo

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.