java.util.Base64
Third-party libraries were used for encoding and decoding Base-64. It could be a frequent operation and several projects use different implementation from Apache Commons-codes/Sprint/Guava. Now Java 8 has java.util.Base64 and has the following methods:
getUrlEncoder()
getEncoder()
getUrlDecoder()
getDecoder()
The URL Base-64 Encoder provides an encoding that is URL and Filename safe (62 is - and 63 is _)
No comments:
Post a Comment