Please help me how can i convert this json date to my normal date
B4X:
Dates: /Date(1542834000000)/
B4X:
Dim CustID As String = 782911364' Customer ID
Dim j As HttpJob
j.Initialize("", Me)
'j.Download("http://192.168.1.239/WebServicesula/Service.asmx/Get")
j.Download("http://192.168.1.239/Generic_Handler_JSON/HandlerVBPay.ashx?customerid=" & CustID)
'j.Download("http://192.168.1.239/Generic_Handler_JSON/HandlerVB.ashx")
'j.PostString("http://192.168.1.239/Webandroid//VB.aspx?customerid=" & CustID)
j.GetRequest.Timeout = 10000 ' 10 seconds
Wait For (j) JobDone(j As HttpJob)
If j.Success Then ' if job is success (http status code 200)
Dim RetVal As String
RetVal = j.GetString
Dim jp As JSONParser
jp.Initialize(j.GetString)
Log(jp) ' will pr
Dim quotes As List = jp.NextArray
For Each quot As Map In quotes
Log("Customerid: " & quot.Get("Account"))
Log("Name: " & quot.Get("Names"))
Log("Class: " & quot.Get("Class"))
Log("Stream: " & quot.Get("stream"))
Log("Amount: " & quot.Get("Amount"))
Log("Dates: " & quot.Get("Dates"))
Log("Years: " & quot.Get("Years"))
Log("Term: " & quot.Get("Term"))
Next
End If