Blob blob=rset.getBlob("content");
int blobLength = (int) blob.length();
byte[] blobAsBytes = blob.getBytes(1, blobLength);
ByteArrayInputStream bo = new ByteArrayInputStream(blobAsBytes);
ObjectInputStream bis = new ObjectInputStream(bo);
Map map = (Map)bis.readObject();
String category=map.toString();
int blobLength = (int) blob.length();
byte[] blobAsBytes = blob.getBytes(1, blobLength);
ByteArrayInputStream bo = new ByteArrayInputStream(blobAsBytes);
ObjectInputStream bis = new ObjectInputStream(bo);
Map map = (Map)bis.readObject();
String category=map.toString();
No comments:
Post a Comment