I created settings with map type. and its recorded txt file.
But i need to use same file with VBasic. How con i read this file in VBasic. (without convert/use on B4J)
Beacuse, file is not readable.
looks binary. map type?
this create text, at least in this simple example.
B4X:
Dim m As Map
m.Initialize
m.Put("Hello",123)
File.WriteMap(File.DirApp,"Data.map", m)
Dim g As JSONGenerator
g.Initialize(m)
File.WriteString(File.DirApp,"data.txt",g.ToPrettyString(1))
looks binary. map type?
this create text, at least in this simple example.
B4X:
Dim m As Map
m.Initialize
m.Put("Hello",123)
File.WriteMap(File.DirApp,"Data.map", m)
Dim g As JSONGenerator
g.Initialize(m)
File.WriteString(File.DirApp,"data.txt",g.ToPrettyString(1))
thank you for musch for reply;
But; I dont change B4J code. I can solve with B4J.
So, I want read (recoerded map file on B4J) with .Net (I dont know record format B4J)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.