Index: UploadFilter.java =================================================================== --- UploadFilter.java (revision 13) +++ UploadFilter.java (working copy) @@ -106,7 +106,8 @@ final Map map = new HashMap(); for (int i = 0; i < list.size(); i ++) { FileItem item = (FileItem) list.get(i); - String str = new String(item.getString().getBytes(),"UTF-8"); + // String str = new String(item.getString().getBytes(),"UTF-8"); + String str = item.getString("UTF-8"); if (item.isFormField()) map.put(item.getFieldName(), new String[] { str }); else