hello! I am trying to extract text from a doc file but the extraction is not well because it doesn't extract some Spanish special characters.
try
{
InputStream is = new FileInputStream("Estructura.doc");
WordExtractor we = new WordExtractor(is);
String text = we.getText();
}
catch (FileNotFoundException e)
{
e.printStackTrace();
}
catch (IOException e)
{
e.printStackTrace();
}
how can I fix my problem?
I hope you can understand my question. I don“t speak English very well...
Thanks!
