If you want to use a data URI (with base64 encoding), although IE <= 7 does not support it, and only IE8 allows up to 32 KB, you will need to encode base64 image data.
There are several Base64 encoders, for example. com.google.gwt.user.server.Base64Utilswhich you can use on server side:
String base64 = Base64Utils.toBase64(icon);
.
, , java ( , ).