From: John L. <je...@pi...> - 2002-05-29 09:24:52
|
On Tue, May 28, 2002 at 11:50:42PM -0700, no...@so... wrote: > Bugs item #561821, was opened at 2002-05-28 23:50 > You can respond by visiting: > http://sourceforge.net/tracker/?func=detail&atid=116807&aid=561821&group_id=16807 > > Category: None > Group: None > Status: Open > Resolution: None > Priority: 5 > Submitted By: Nobody/Anonymous (nobody) > Assigned to: Nobody/Anonymous (nobody) > Summary: ZipEntry name in Chinese Problem > > Initial Comment: > If the ZipEntry's name is in Chinese, if will be wrong. > The method to solve this error is: > > in method ZipInputStream.getNextEntry(), > Chage these lines: > > // Changed by Simon. May.29,2002 > // String name = new String(buffer, "UTF8"); > String name = new String(buffer); > > It will be ok. > > > > ---------------------------------------------------------------------- > > You can respond by visiting: > http://sourceforge.net/tracker/?func=detail&atid=116807&aid=561821&group_id=16807 |