I have a db varchar field looks like the result of Java StringBuffer serialization:
íjava.lang.StringBuffer [many random characters here removed for this question]
how do I deserialize it into String?
I have a db varchar field looks like the result of Java StringBuffer serialization:
íjava.lang.StringBuffer [many random characters here removed for this question]
how do I deserialize it into String?
Copyright © 2021 Jogjafile Inc.
Essentially you need to do this:
You'll have to hope that you can really get the original bytes produced by the serialisation back, and that they haven't been transformed on their way to and from the DB.