Base64 Encoding Performance: JDK vs Apache Commons

Dmitry Komanov
2 min readSep 24, 2022

--

A runner with T-Shirt “j.u.Base64” crosses the finish line
Cover image by mohamed_hassan (with minor change) from Pixabay

Recently I stumbled upon some old code that used Base64 from Apache Commons. So I decided to compare its performance to java.util.Base64.

It’s not a new topic whatsoever (links at the end), so let’s just jump to benchmark results.

Benchmarks

Performance for encoding 10K characters for different JDKs. java.util.Base64 is a clear winner performing almost 10x faster.

A bar chart for all JDKs
Encoding/Decoding, all JDKs

Performance for different data sizes (from 1 byte to 10K bytes) for openjdk-17. As you could see in the previous chart, openjdk-8 performs worse, but still java.util.Base64 is clearly better in all cases.

A line chart for all data lenghts
Encoding/Decoding, all lengths, openjdk-17

Conclusion

It’s clearly a time to replace old usages of Apache Commons for base64 encoding. Unless you are on JDK7 or lower, then it’s time to upgrade this part first ;-) (as java.util.Base64 was introduced in JDK8)

Read More

Play with charts here. Source code is on GitHub.

Sign up to discover human stories that deepen your understanding of the world.

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

--

--

Dmitry Komanov
Dmitry Komanov

Written by Dmitry Komanov

Software developer, moved to Israel from Russia, trying to be aware of things.

No responses yet

Write a response