please see my code:
B4X:
Dim test As Map
test.Initialize
test.Put("a","abc")
test.Put("b","234")
Dim test2 As Map
test2.Initialize
test2.put("a1","111")
test2.put("a2","222")
test.Put("c",test2)
File.WriteMap(File.DirInternal,"tttt",test)
Dim ok As Map
ok.Initialize
ok=File.ReadMap(File.DirInternal,"tttt")
Dim ok2 As Map
ok2 = ok.Get("c") ' Here is the wrong code, How to get the "test2"