Stream in Java is converted to object serializable

Source: Internet
Author: User
Tags serialization

I. PO entity class

public class buispo{      /**        * Business Data */        private Bolb buisdata;       Public Blob Getbusidata () {return this.busidata;       }       public void Setbusidata (Blob busidata) {this.busidata = Busidata;
} }

Two. Get this Blob object from the database

Busipo Busipo =Busidao.finduniquewithproperty (parammap); InputStream is=NULL; Try {       if(Istapprbusidatapo! =NULL) { is=busipo.getbusidata (). Getbinarystream ();//Get binary stream from blob (large object)}Else {                    return NULL; }     } Catch(SQLException e) {logger.error ("Error getting business data", E); Throw Newshineexception (e); }    return(Serializable)   Serializationutils.deserialize (IS); Using the Serializationutils class as the serialization tool class, reverse the input stream to the serial number
    Serializationutils The class is a serialization tool class and a tool under the Lang Package, primarily for serialization operations, while providing an object cloning interface

Three. converting serialization to Object

return (Object) Tempbusidataenti.querybusidatabyinstanceid (instanceId);

  

Stream in Java is converted to object serializable

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.