Android Tutorial HttpUtils - Android web services are now simple!

Status
Not open for further replies.
OkHttpUtils2 is now available. OkHttpUtils2 is an improved version and is recommended for new projects. You shouldn't use HttpUtils (v1)!

HttpUtils is made of a code module and a service module. These two modules make it very simple to download online resources and upload data.

The advantages of using HttpUtils are:
  • Much simpler than working with HttpClient directly.
  • Handles parallel calls efficiently and correctly (protects from RejectedExecutionException exceptions).
  • Downloads are not affected by the activity life cycle.
Using HttpUtils

A simple example of downloading a page and returning the page as string:
B4X:
Sub Globals
 Dim b4a As String
 b4a = "http://www.b4x.com"
End Sub

Sub Activity_Create (FirstTime As Boolean)
 HttpUtils.CallbackActivity = "Main" 'Current activity name.
 HttpUtils.CallbackJobDoneSub = "JobDone"
 HttpUtils.Download("Job1", b4a)
End Sub

Sub JobDone (Job As String)
 Dim s As String
 If HttpUtils.IsSuccess(b4a) Then
  s = HttpUtils.GetString(b4a)
 End If
End Sub
First we configure the callback subs. Then we call HttpUtils.Download or HttpUtils.DownloadList. These calls submit a job request to HttpUtils.
A job is made of one or more links.
HttpUtils raises two types of events while processing a job. The UrlDone event is raised for each successful download with the downloaded url and the JobDone event is raised when the whole job finishes.
You cannot submit a new job while a current job is running (though a job can contain many links).

We have three ways to access a downloaded resource:
  • HttpUtils.GetString(Url As String) - Returns the resource as string
  • HttpUtils.GetBitmap(Url As String) - Returns the resource as bitmap
  • HttpUtils.GetInputStream(Url As String) - Returns an InputStream which allows you to manually read the downloaded resource.
These three methods should only be called after the job is done or inside the UrlDone event sub (for that specific Url).
After downloading a resource the Url serves as the key for that resource.

Inside JobDone event sub you should call HttpUtils.IsSuccess before accessing any Url as it is possible that some or all of the downloads have failed. This is not necessary in UrlDone event as UrlDone is called for each successful download.

Second example:
In this example we first download an image and set it as the activity background. Then we download another 6 Urls and print the last one as string. The code for this example is attached.
B4X:
Sub Process_Globals
    Dim ImageUrl As String
    ImageUrl = "http://www.b4x.com/android/images/logo2.png"
    Dim Job2Links As List
End Sub

Sub Globals

End Sub

Sub Activity_Create(FirstTime As Boolean)
    HttpUtils.CallbackActivity = "Main"
    HttpUtils.CallbackJobDoneSub = "JobDone"
    HttpUtils.CallbackUrlDoneSub = "UrlDone"
    Job2Links.Initialize
    Job2Links.AddAll(Array As String( _
        "http://www.google.com", "http://www.yahoo.com", _
        "http://www.bing.com", "http://www.cnn.com", _
        "http://www.twitter.com", "http://www.facebook.com"))
  
    HttpUtils.Download("Job1", ImageUrl)
End Sub

Sub Activity_Resume
    'Check whether a job has finished while the activity was paused.
    If HttpUtils.Complete = True Then JobDone(HttpUtils.Job)
End Sub
Sub UrlDone(Url As String)
    Log(Url & " done")
End Sub
Sub JobDone (Job As String)
    Select Job
        Case "Job1"
            If HttpUtils.IsSuccess(ImageUrl) Then
                Dim b As Bitmap
                b = HttpUtils.GetBitmap(ImageUrl)
                Activity.SetBackgroundImage(b)
            End If
            'Start the second job
            HttpUtils.DownloadList("Job2", Job2Links)
        Case "Job2"
            For i = 0 To HttpUtils.Tasks.Size - 1
                link = HttpUtils.Tasks.Get(i)
                Log(link & ": success=" & HttpUtils.IsSuccess(link))
            Next
            If HttpUtils.IsSuccess("http://www.google.com") Then
                Log(HttpUtils.GetString("http://www.google.com"))
            End If
    End Select
    HttpUtils.Complete = False 'Turn off the complete flag so we won't handle it again if the activity is resumed.
End Sub
What happens when the user presses on the Home key during a download?
The download will complete successfully (we are using a service for this).
However your activity will be paused and the UrlDone and JobDone events will not fire.

When our activity is resumed we should check if we missed anything. This is done with this code:
B4X:
Sub Activity_Resume
    'Check whether a job has finished while the activity was paused.
    If HttpUtils.Complete = True Then JobDone(HttpUtils.Job)
End Sub
We are calling JobDone ourselves if needed.
In Sub JobDone we reset the Complete flag so we know that this job was handled.
UrlDone event should be considered a "nice to have" feature. Your code should be prepared to handle the case where some UrlDone events were missed due to the activity being paused.

The FlickrViewer example was rewritten and the attached code uses this module.
In this example we first go to the "main" page. In this page we find 9 links to 9 images. We submit a second job with all these links.

We show each image as soon as it is ready by using the UrlDone event.
In JobDone we check if all Urls were handled. We can miss some of these events if the activity was paused during download.

flickr_viewer1.png



HttpUtils, similar to DBUtils, aims to simplify common tasks that many developers face. The code is available for you. So changes can be made as needed.

Updates:

V1.04 - The service is now destroyed when it is no longer needed and recreated when needed again. This version also fixes a bug that caused the application to crash if the service was started after the process was killed.

V1.02 - PostString, PostBytes and PostFile methods added to HttpUtils.
These methods make it easy to post data to a web service (using http POST method).
The behavior of these methods is similar to Download and DownloadList. JobDone event is raised after the response from the server is read.

The latest version (v1.04) is included in HttpUtilsExample.
 

Attachments

  • FlickrViewer.zip
    9.8 KB · Views: 3,213
  • HttpUtilsExample.zip
    7.8 KB · Views: 5,655
Last edited:

hackhack

Active Member
Licensed User
Longtime User
So the getstring is only for text? I try to download a binary apk file, and the file is incomplete.
 

xalion

Member
Licensed User
Longtime User
I found anoher problem for httputils.
My phone is HTC Incredible 2. when I powered off my device and powered on then. It shows Force Closed my application error.
I checked the log:

06-23 13:13:09.579: ERROR/InetAddress(7719): InetAddress_getaddrinfo ++
06-23 13:13:09.579: ERROR/InetAddress(7719): InetAddress_getaddrinfo name=web.xasyu.cn
06-23 13:13:09.579: ERROR/InetAddress(7719): InetAddress_getaddrinfoImpl ++
06-23 13:13:09.579: ERROR/InetAddress(7719): InetAddress_getaddrinfoImpl result == 0 && addressList
06-23 13:13:09.579: ERROR/InetAddress(7719): InetAddress_getaddrinfoImpl: case AF_INET:
06-23 13:13:09.579: ERROR/InetAddress(7719): InetAddress_getaddrinfoImpl addressList
06-23 13:13:09.579: ERROR/InetAddress(7719): InetAddress_getaddrinfoImpl --
06-23 13:13:09.579: ERROR/InetAddress(7719): InetAddress_getaddrinfo --

please check it.
 

xalion

Member
Licensed User
Longtime User
I don't know how to get stack trace.
and I get follow log:
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): FATAL EXCEPTION: main
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): java.lang.RuntimeException: Unable to create service cn.xasyu.httputilsservice: java.lang.RuntimeException: java.lang.NullPointerException
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): at android.app.ActivityThread.handleCreateService(ActivityThread.java:3224)
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): at android.app.ActivityThread.access$3300(ActivityThread.java:140)
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2260)
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): at android.os.Handler.dispatchMessage(Handler.java:99)
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): at android.os.Looper.loop(Looper.java:143)
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): at android.app.ActivityThread.main(ActivityThread.java:5135)
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): at java.lang.reflect.Method.invokeNative(Native Method)
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): at java.lang.reflect.Method.invoke(Method.java:521)
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:858)
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): at dalvik.system.NativeStart.main(Native Method)
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): Caused by: java.lang.RuntimeException: java.lang.NullPointerException
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): at cn.xasyu.main.initializeProcessGlobals(main.java:368)
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): at cn.xasyu.httputilsservice.onCreate(httputilsservice.java:27)
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): at android.app.ActivityThread.handleCreateService(ActivityThread.java:3210)
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): ... 10 more
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): Caused by: java.lang.NullPointerException
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): at anywheresoftware.b4a.objects.streams.File.getDirInternalCache(File.java:55)
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): at cn.xasyu.httputilsservice._process_globals(httputilsservice.java:138)
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): at cn.xasyu.main.initializeProcessGlobals(main.java:365)
06-24 09:41:39.406: ERROR/AndroidRuntime(12826): ... 12 more
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
This is related to calling File.DirInternalCache from Sub Process_Globals. This issue will be fixed in the next version.
For now change HttpUtilsService with the following change:
B4X:
Sub Process_Globals
    Dim hc As HttpClient
    Dim task As Int
    Dim countWorking As Int
    Dim finishTasks As Int
    Dim maxTasks As Int
    maxTasks = 10
    Dim taskToRequest As Map
    Dim TempFolder As String
    'TempFolder = File.DirInternalCache <-comment this line
    Dim Post As Boolean
    Dim PostBytes() As Byte
    Dim PostInputStream As InputStream
    Dim PostLength As Int
End Sub
Sub Service_Create
    If TempFolder = "" Then TempFolder = File.DirInternalCache '<-- Add this line
    hc.Initialize("hc")
End Sub
 

xalion

Member
Licensed User
Longtime User
fix as your code,but still force close:
06-24 15:07:24.472: ERROR/B4A(15039): httputilsservice_service_start (B4A line: 27)
06-24 15:07:24.472: ERROR/B4A(15039): Do While task < HttpUtils.Tasks.Size
06-24 15:07:24.472: ERROR/B4A(15039): java.lang.RuntimeException: Object should first be initialized (List).
06-24 15:07:24.472: ERROR/B4A(15039): at anywheresoftware.b4a.AbsObjectWrapper.getObject(AbsObjectWrapper.java:45)
06-24 15:07:24.472: ERROR/B4A(15039): at anywheresoftware.b4a.objects.collections.List.getSize(List.java:118)
06-24 15:07:24.472: ERROR/B4A(15039): at cn.xasyu.httputilsservice._service_start(httputilsservice.java:257)
06-24 15:07:24.472: ERROR/B4A(15039): at java.lang.reflect.Method.invokeNative(Native Method)
06-24 15:07:24.472: ERROR/B4A(15039): at java.lang.reflect.Method.invoke(Method.java:521)
06-24 15:07:24.472: ERROR/B4A(15039): at anywheresoftware.b4a.BA.raiseEvent2(BA.java:104)
06-24 15:07:24.472: ERROR/B4A(15039): at anywheresoftware.b4a.BA.raiseEvent(BA.java:88)
06-24 15:07:24.472: ERROR/B4A(15039): at cn.xasyu.httputilsservice.handleStart(httputilsservice.java:49)
06-24 15:07:24.472: ERROR/B4A(15039): at cn.xasyu.httputilsservice.onStartCommand(httputilsservice.java:44)
06-24 15:07:24.472: ERROR/B4A(15039): at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:3344)
06-24 15:07:24.472: ERROR/B4A(15039): at android.app.ActivityThread.access$3600(ActivityThread.java:140)
06-24 15:07:24.472: ERROR/B4A(15039): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2269)
06-24 15:07:24.472: ERROR/B4A(15039): at android.os.Handler.dispatchMessage(Handler.java:99)
06-24 15:07:24.472: ERROR/B4A(15039): at android.os.Looper.loop(Looper.java:143)
06-24 15:07:24.472: ERROR/B4A(15039): at android.app.ActivityThread.main(ActivityThread.java:5135)
06-24 15:07:24.472: ERROR/B4A(15039): at java.lang.reflect.Method.invokeNative(Native Method)
06-24 15:07:24.472: ERROR/B4A(15039): at java.lang.reflect.Method.invoke(Method.java:521)
06-24 15:07:24.472: ERROR/B4A(15039): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:858)
06-24 15:07:24.472: ERROR/B4A(15039): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
06-24 15:07:24.472: ERROR/B4A(15039): at dalvik.system.NativeStart.main(Native Method)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): FATAL EXCEPTION: main
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): java.lang.RuntimeException: Unable to start service cn.xasyu.httputilsservice@479e1d20 with null: java.lang.RuntimeException: java.lang.RuntimeException: Object should first be initialized (List).
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:3358)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at android.app.ActivityThread.access$3600(ActivityThread.java:140)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2269)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at android.os.Handler.dispatchMessage(Handler.java:99)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at android.os.Looper.loop(Looper.java:143)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at android.app.ActivityThread.main(ActivityThread.java:5135)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at java.lang.reflect.Method.invokeNative(Native Method)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at java.lang.reflect.Method.invoke(Method.java:521)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:858)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at dalvik.system.NativeStart.main(Native Method)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): Caused by: java.lang.RuntimeException: java.lang.RuntimeException: Object should first be initialized (List).
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at anywheresoftware.b4a.BA.raiseEvent2(BA.java:144)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at anywheresoftware.b4a.BA.raiseEvent(BA.java:88)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at cn.xasyu.httputilsservice.handleStart(httputilsservice.java:49)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at cn.xasyu.httputilsservice.onStartCommand(httputilsservice.java:44)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at android.app.ActivityThread.handleServiceArgs(ActivityThread.java:3344)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): ... 10 more
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): Caused by: java.lang.RuntimeException: Object should first be initialized (List).
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at anywheresoftware.b4a.AbsObjectWrapper.getObject(AbsObjectWrapper.java:45)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at anywheresoftware.b4a.objects.collections.List.getSize(List.java:118)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at cn.xasyu.httputilsservice._service_start(httputilsservice.java:257)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at java.lang.reflect.Method.invokeNative(Native Method)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at java.lang.reflect.Method.invoke(Method.java:521)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): at anywheresoftware.b4a.BA.raiseEvent2(BA.java:104)
06-24 15:07:24.482: ERROR/AndroidRuntime(15039): ... 14 more
 

xalion

Member
Licensed User
Longtime User
It only occured when I power off and power on.
my htc incrible S use quick power off mode.
when I use reboot (swipe all cache), it don't occur.
 

NeoTechni

Well-Known Member
Licensed User
Longtime User
Replace in httputilservice

B4X:
link = HttpUtils.Tasks.Get(task)

With

B4X:
link = HttpUtils.Tasks.Get(task)
   link=link.Replace(" ", "%20")
 
Status
Not open for further replies.
Top