I'm using this code for reading a file:
And this one, for writing:
I've a problem with codification because some Latin characters lite: á, é ,í... apears like this �, How can I solve this??
Thanks!!
B4X:
Dim List1 As List
List1 = File.ReadList(File.DirDefaultExternal, "1.txt")
For i = 0 to List1.Size - 1
Log(List1.Get(i))
Next
And this one, for writing:
B4X:
Dim List1 As List
List1 = File.ReadList(File.DirDefaultExternal, "1.txt")
I've a problem with codification because some Latin characters lite: á, é ,í... apears like this �, How can I solve this??
Thanks!!