this is my blob format
String s=SerialBlob@b23d1da
I was trying to read this blob format with the help of buffer reader, due to which this blob got converted to string format. Is there any way to typecast the current string to blob format
this is my blob format
String s=SerialBlob@b23d1da
I was trying to read this blob format with the help of buffer reader, due to which this blob got converted to string format. Is there any way to typecast the current string to blob format
Assuming that your information is correct, you can't solve this issue without modifying your webservice.
javax.sql.rowset.serial.SerialBlob@b23d1da is what a SerialBlob looks like with a naive default Object.toString implementation. It does not contain the information you need to decode / fetch the Blob.
If you are in control of the web service, you will need to modify it to return the Blob in some serializable format, whether that's base64 encoded etc.