Tried to load csv file . I used the code like this ;
dim su as StringUtils
dim table as List
lstplace as ListView
....
table=su.LoadCSV(File.DirAssets,"Adi.csv",",")
lstplace.Clear
For i=0 To table.Size-1
lstplace.AddSingleLine(table.Get(i))
Next
.
But while running , the list shows "[Ljava.lang.String;@43ea9b50"
and so on . What to do get the actual text which is in csv file ?