Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to encode a short String as base 64 in GWT and decode the base 64 string on the server. Anyone have utility class or library for this?

share|improve this question
1  
possible duplicate of Decode Base64 data in java – Johan Sep 9 '11 at 18:44
9  
People should start noticing that a GWT question probably has a different context from Java SE and is not a duplicate of a Java SE question. What runs on Java SE requires additional treatment to be placed on GWT. – Blessed Geek Oct 21 '11 at 13:47

3 Answers

up vote 9 down vote accepted

I use this one java file in GWT projects. Very simple.

share|improve this answer
1  
not working for russian text – user249654 Jan 12 '12 at 10:33
@user249654: here's a class that decodes base64'd russian text correctly: gwt-base64-decoding-into-binary-supports-unsigned-byte-data – Janus Troelsen Oct 10 '12 at 21:04

You can use native JavaScript for this on the client on all browsers except IE ≤ 9. On the server you can use one of the official classes.

Java/GWT:

private static native String b64decode(String a) /*-{
  return window.atob(a);
}-*/;

Encode is btoa.

share|improve this answer

Base64 class can't be used on the client side. It would have to be emulated.

share|improve this answer
which one can't be used? – Janus Troelsen 2 days ago

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.