You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is a bug when trying to extract a file that has a non-English ASCII character in the name starting with Android Nougat. According to Android's Charset, it only handles 7 bit ASCII (below). However, if the filename has 8 bit ASCII (chars 128-255) ExtractManager gets an exception due to the filename's character encoding and it will abort the Zip extraction. https://developer.android.com/reference/java/nio/charset/Charset.html
There is a bug when trying to extract a file that has a non-English ASCII character in the name starting with Android Nougat. According to Android's Charset, it only handles 7 bit ASCII (below). However, if the filename has 8 bit ASCII (chars 128-255) ExtractManager gets an exception due to the filename's character encoding and it will abort the Zip extraction.
https://developer.android.com/reference/java/nio/charset/Charset.html
It can be fixed by using the steps outlined in the post below in ExtractManager.extract(File,String) by setting the Charset in the ZipFile instantiation to "ISO-8859-1".
https://stackoverflow.com/questions/41908761/unzipping-a-file-with-special-characters-in-filenames-from-api24-upward
The text was updated successfully, but these errors were encountered: