K kohle Active Member Licensed User Longtime User May 29, 2019 #1 I am reading a windows iso file with File.ReadList. I think the command expects an uft8 file. How I can read an ISO file without special character problems ?
I am reading a windows iso file with File.ReadList. I think the command expects an uft8 file. How I can read an ISO file without special character problems ?
Erel B4X founder Staff member Licensed User Longtime User May 29, 2019 #2 The single use case for TextWriter / TextReader is for working with non-utf8 files. B4X: Dim tr As TextReader tr.Initialize2(File.OpenInput(...), "ISO-something") Dim list As List = tr.ReadList tr.Close Upvote 0
The single use case for TextWriter / TextReader is for working with non-utf8 files. B4X: Dim tr As TextReader tr.Initialize2(File.OpenInput(...), "ISO-something") Dim list As List = tr.ReadList tr.Close