*/
private String extract(byte[] byteObject) throws TikaException {// throws IOException
StringBuilder wBuf = new StringBuilder();
InputStream stream = null;
Metadata metadata = new Metadata();
HtmlParser htmlParser = new HtmlParser();
BodyContentHandler handler = new BodyContentHandler(-1);// -1
ParseContext parser = new ParseContext();
try {
stream = new ByteArrayInputStream(byteObject);
htmlParser.parse(stream, handler, metadata, parser);
wBuf.append(handler.toString()
+ System.getProperty("line.separator"));
} catch (SAXException e) {
throw new RuntimeException(e);
} catch (IOException e) {