java - Eclipse word-document reader/text extractor -
i need create script read data word documents , process using java. when reading right out of file, text get's messed up, understandable.
my question if there exists plugin eclipse extract text file?
you can use apache poi libraries using xwpf
xwpfdocument wd = new xwpfdocument(inputstream); xwpfwordextractor wde = new xwpfwordextractor(wd);
Comments
Post a Comment