I've encountered some problems while reading a list.
Here's how i save a list:
and here's how i try to read it to a variable:
and it's pointing at this line:
What's going on
Here's how i save a list:
B4X:
all.Add(Moneyy)
File.WriteString(File.DirRootExternal,"save.txt",all)
and here's how i try to read it to a variable:
B4X:
Dim lall As List
lall = File.ReadList(File.DirRootExternal,"save.txt")
Moneyy = lall.Get(0)
B4X:
java.lang.NumberFormatException
and it's pointing at this line:
B4X:
Moneyy = lall.Get(0)
What's going on