On Tue, 14 Jan 2003, Hirschmann, Bernhard wrote:
> Date: Tue, 14 Jan 2003 17:31:03 +0100 > From: "Hirschmann, Bernhard" <[EMAIL PROTECTED]> > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: 'Struts Users Mailing List' <[EMAIL PROTECTED]> > Subject: AW: Transforming a String to valid HTML encoding > > > I wonder if this problem is too easy or too hard - may please somebody > comment this? > ResponseUtils is only worried about filtering the characters that could cause security problems -- it is not designed to be a general purpose URL encoder. For that, check out the java.net.URLEncoder class. > Craig? > > Thank you very much Craig > > > ----- original message ----- > > I still have the problem to transform a String containing national special > characters to the appropriate HTML encoding. > > i.e.: "sch�n & reich" --> "schön & reich" > > The class org.apache.struts.util.ResponseUtils only transforms the 4 > characters <, >, & and " into their html representative. > > Is there another transformer around? > > Any hints highly appreciated. > > Regards, > Bernhard > > > -- > To unsubscribe, e-mail: > <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: > <mailto:[EMAIL PROTECTED]> > > > -- > To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> > For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> > > -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

