I am using truezip 7.7.9 package to do crud operations on archive files. When I add a file with japanese characters the entry becomes '???????' after the second updation of the archive.
Steps to reproduce:
- Add a file in the archive with entry name in japanese(日本語テーブル)
 - unmount() the archive.
 - Add another file in the archive and unmount again. now the previous enty becomes '?????' if we list the archive entries.
 
TFile archive = new TFile(zipFilePath);
File entry = new TFile(zipFilePath+"日本語テーブル.txt");
Writer writer = new TFileWriter(entry);
archive.umount()
I could not find anything in the documentation related to this.