|
fRead returning only hex 1A characters |
Iniciado por ClaudeHullq, set., 13 2022 11:57 AM - 2 respostas |
| |
| | | |
|
| |
Membro registado 10 mensagems |
|
Publicado em setembro, 13 2022 - 11:57 AM |
Using Windev Mobile 27 in an Android app:
nFid is int = fOpen(gsPath+"textfile.txt",foAnsi+foRead) fSeek(nFid,0,fpBeginning) s is ANSI string = fRead(nFid,100) info(s) shows a block of Chinese characters
fSaveText(path+"textfile.txt",s) shows "..." all hex 1A characters
But in simulator mode the correct text is displayed in info(s). Is this a flaw in Windev or my Android SDK or what? |
| |
| |
| | | |
|
| | |
| |
Membro registado 9 mensagems |
|
Publicado em setembro, 29 2022 - 5:51 PM |
Same problem with the WM27. |
| |
| |
| | | |
|
| | |
| |
Membro registado 909 mensagems |
|
Publicado em outubro, 05 2022 - 12:27 PM |
Hi. The Chinese characters may be for using an ANSI string since in Android and IOS the strings are of Unicode type. That's why in the simulator it looks fine, since on the desktop the strings are ANSI by default. What does it look like when using fLoadText instead of using fopen and fread?
Rubén |
| |
| |
| | | |
|
| | | | |
| | |
|