문제

Is it possible to encode a url-parameter using a specific encoding scheme in GWT?

URLEncoder.encode(string, "ISO-8859-1");

works for me in standard java but isn't available in GWT.

URL.encode(string);

encodes in GWT with "UTF-8". An encoding can not be specified

도움이 되었습니까?

해결책

I think it is not possible. Take a look here

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top