/* */ {
/* 185 */ if (this.data == null) {
/* */ try {
/* 187 */ ByteArrayOutputStreamEx baos = new ByteArrayOutputStreamEx(1024);
/* 188 */ InputStream is = this.dataHandler.getDataSource().getInputStream();
/* 189 */ baos.readFrom(is);
/* 190 */ is.close();
/* 191 */ this.data = baos.getBuffer();
/* 192 */ this.dataLen = baos.size();
/* */ }
/* */ catch (IOException e) {