Determining [B@1ce9aa3

I am getting an Object from DB. When i print that object i prints as [B@1ce9aa3I am not able to determine...what exacly it is....a java.sql.Blob or an array of it because at runtime it gives classcastexception
[223 byte] By [Nistelrooya] at [2007-11-26 13:21:57]
# 1
Print out the objects class name. System.out.println(object.getClass().getName());
sabre150a at 2007-7-7 17:52:16 > top of Java-index,Java Essentials,Java Programming...
# 2
it is printing it to be [B
Nistelrooya at 2007-7-7 17:52:16 > top of Java-index,Java Essentials,Java Programming...
# 3
> it is printing it to be [BSo it is a byte array.byte[] objectAsByteArray = (byte[])object;Message was edited by: sabre150
sabre150a at 2007-7-7 17:52:16 > top of Java-index,Java Essentials,Java Programming...