In this method

    public static String urlDecode(String input) // input = "новый" (russian 
word)
    {
        try
        {
            return CODEC.decode(input); // return "?????" after call this method
        }
        catch (DecoderException ex)
        {
            throw new RuntimeException(ex);
        }
    }

In Tomcat "<Connector URIEncoding="UTF-8"/>"


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to