Hi there!
Using the client side zip functionality of JFileUpload, the packer seems to have problems with umlauts in the filenames.
For example, the file "änderung.txt" will be packt into a "änderung.txt.archive.zip", which contains a file called "+ñnderung.txt".
Is it possible to add utf-8 encoding support to the packer?
Regards,
Chris
Archiver has problems with umlauts in filenamesRe: Archiver has problems with umlauts in filenamesNo, it's a known problem reported at the end of:
http://www.jfileupload.com/products/jfi ... ssion.html A solution is to replace non-ASCII characters by underscore with: <PARAM NAME="preprocessingfilterparam5" VALUE="entrytemplate"> <PARAM NAME="preprocessingfiltervalue5" VALUE=":regex=[^a-zA-Z0-9_/\\\\\\-\\.]:_:"> As detailed in the tutorial. Could it help ? Re: Archiver has problems with umlauts in filenamesOk, this could help.
Thanks! |