Re: Character decoding in form data

2001-10-04 Thread Gregor Kovaè
Hi! I had the same problem and I solved it using Tomcat 3.3 (I think it was beta 1). If you are using database make sure that you create a database using your character set. My example: I had some data in ISO8859-2 character set in the database. The database was MySQL with defaulot character

Re: Character decoding in form data

2001-10-04 Thread Laszlo Palmai
users but Linux and others. (I am ready to use UTF8 instead of ISO-8859-2 but my tests give the same results.) Thanks, Laszlo - Original Message - From: Gregor Kovaè [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, October 04, 2001 10:14 AM Subject: Re: Character decoding in form

Character decoding in form data

2001-10-03 Thread Laszlo Palmai
Hi! Is there anybody who knows what version of Tomcat support character sets other than ISO8859_1, if any? I use the ISO8859_2 character set, and my form decoding now looks like: if(name!=null) customer.setName( new String(name.getBytes("ISO8859_1"),"ISO8859_2")); if(contact!=null)