I need to decoding base64 string in GWT client code.

Now I use Image.setUrl(myImageServletUrl) to obtaining image from
server. But this method doesn't work if you want to get some
additional data with image in one server request. So I need create
class MyImage:

class MyImage implements Serializable {
    String base64Image;
    AddtionalData addtionalData;
}

And use it in GWT-RPC. And decode base64 string on client code.

How can I do it?


On Dec 25, 8:02 pm, Ed <post2edb...@gmail.com> wrote:
> I don't see what this has to do with GWT, but here it goes:
> Google is your 
> friend:http://stackoverflow.com/questions/469695/decode-base64-data-in-javahttp://stackoverflow.com/questions/5441413/create-imageview-from-base...

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to