Android Question Hebrew from text file

trepdas

Active Member
Licensed User
Longtime User
I am trying to load a hebrew txt file that created and saved in utf-8

but when I load the text file into a list I get "?????" instead of hebrew letters.

can anyone tell me what I should do in order to display it correctly?

Dim List1 As List
List1 = File.ReadList(File.DirAssets, "pool.txt")
Msgbox("List1.Size = " & List1.Size & CRLF & "The third item is: " & List1.Get(2), "")
 

Attachments

  • Screenshot_20171218-152941.png
    Screenshot_20171218-152941.png
    143.3 KB · Views: 162

trepdas

Active Member
Licensed User
Longtime User
well it seems like the text file was encoded in ANSI and not in UTF8
:////

THX :X
 
Upvote 0
Top