Is there a way to encode a String with UTF-8 in GWT? In other words, is there a GWT-compatible equivalent to java.net.URLEncoder.encode(toEncode, "UTF-8")?
+2
A:
Yes, it's com.google.gwt.http.client.Url.encode(), JavaDoc: http://google-web-toolkit.googlecode.com/svn/javadoc/1.6/com/google/gwt/http/client/URL.html
Hilbrand
2009-07-22 07:59:57
wow how did I miss this, thank you :)
P4ndaman
2009-07-22 13:52:00