Skip to content
Advertisement

BloomFilter to String and back

I want to conver BloomFilter to String, store it and then get it from String. If I do it using just byte array, without converting to String – everything is ok:

JavaScript

I get equals output, but if I convert bytes to String and then String to bytes – the result is wrong, I get filter1.approximateElementCount() = 799 instead of 402.

JavaScript

Is there a way to convert BloomFilter to String and back?

Advertisement

Answer

Converting bytes to a String and back is not always reversible in any Charset. You must use a tool such as Base64 (provided in Guava as BaseEncoding.base64()) to convert a byte array to a string in such a way that you can always convert it back correctly.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement