Hi I have a UFF file from which I need to retrieve data, I open the file on Windows notepad everything seems right but my problem is that in B4A when I use csv from StringUtils it returns values like: [Ljava.lang.String;@a065e148, and my second problem is that as attached my file contains number in this format: -3.43992E-08 how can I read their values in B4A?
Retrieving data from UFF file:
Dim h As List =s.LoadCSV(File.DirAssets, "FileName.uff", " ")
Dim value As String=h.Get(200)
Log (value)