Question about zipstream and utf8

BlitzMax Forums/BlitzMax Beginners Area/Question about zipstream and utf8

Takis76(Posted 2015) [#1]
I would like to load a utf8 text file from a zip , using koriolis zipstream mod.

Usually a utf8 text file load with

file_stream = ReadStream("utf8::textfile.txt")


With zip stream you load the file with

file_stream = ReadStream("zip::zipfile.zip//textfile.txt")


What happen if I would like to load utf8 encoded file in zip?

This example doesn't work:

file_stream = ReadStream("utf8::zip::zipfile.zip//textfile.txt")


OR

file_stream = ReadStream("zip::utf8::zipfile.zip//textfile.txt")


How would I load the utf8 file from the zip?
Thank you :)


Takis76(Posted 2015) [#2]
The code above worked , but I changed the fonts and I saw the unicode8 characters.