incorrect charset when reading the jsp form
Hi all,
I'm developing a web application with Struts, TomCat and PostgreSQL (Hibernate).
Data from PostgreSQL (UTF-8) is displayed correctly in my <html:text> field.
But when I read this text field, i recognized by debugging the form, that its contents are in the wrong characterset.
e.g. ä instead of ä and so on.
I tried some things like:
<%@ page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
or
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" >
<head>
in the jsp-file
and
response.setContentType("text/html; charset=UTF-8");
request.setCharacterEncoding("UTF8");
in the action-file but nothing works.
Can anyone help me to solve the problem?
Thanks in advance
Martin
|