38394041424344
/** * */ public XSerializer() { this.bos = new ByteArrayOutputStream(); this.tos = new XOutputStreamImpl(this.bos); }
43444546474849
this.tos = new XOutputStreamImpl(this.bos); } public XSerializer(int size) { this.bos = new ByteArrayOutputStream(size); this.tos = new XOutputStreamImpl(this.bos); }
36373839404142
41424344454647