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?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
I use this one java file in GWT projects. Very simple. |
|||||||
|
|
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:
Encode is |
||||
|
|
|
Base64 class can't be used on the client side. It would have to be emulated. |
||||
|
|