Posted By:
Anonymous
Posted On:
Tuesday, June 25, 2002 07:37 AM
Hi,
I don't think you have to set anything up in Tomcat or Apache!
I had the same problem with UTF-8 data to be presented in JSP pages.
What I did is putting these two lines in each JSP pages:
<%@ page contentType="text/html"%>
This was needed to overwrite the default setting of the JSP specifications (I work with JSP specifications 1.1). The default setting is contentType="text/html; charset=iso-8859-1"
This HTML tag will force your browser to automatically switch the UTF-8 encoding
Hoping it can help you...