JSP乱码终结


public final class UTF8Tool {
    
    /** Creates a new instance of UTF8Tool */

    public final String toUTF8String(String in)throws Exception{
        String outer=new String(in.getBytes("ISO8859-1"),"UTF-8");
        return outer;
    }
}

你可能感兴趣的:(JSP乱码终结)