Android Question TiniFile problem

Theera

Well-Known Member
Licensed User
Longtime User
Hi all,
I have learned about TiniFile class . But I have problem,why it doesn't return the correct value for me?
 

Attachments

  • B4AReadIniFile.zip
    11 KB · Views: 70

teddybear

Well-Known Member
Licensed User
There are 2 issues in your inimoneyinfo.ini
1. The file encoding is BOM+UTF-8. you will not read the [section]. you need to save as UTF-8 or ANSI encoding
2.The PromptPayID =123456789 makes the key "PromptPayID " it has a space, you will not get the value of PromptPayID. you need to remove the space front of =.
 
Last edited:
Upvote 0

Theera

Well-Known Member
Licensed User
Longtime User
Upvote 0
Top