/**
* 读取doc文件内容
*
* @param file 想要读取的文件对象
* @return 返回文件内容
*/
public static String doc2String(File file)
{
String result = “”;
try
{
FileInputStream fis = new FileInputStream(file);
HWPFDocument doc = new HWPFDocument(fis);
Range rang = doc.getRange();
result += rang.text();
fis.close();
}
catch (Exception e)
{
e.printStackTrace();
}
return result;
}
java中将word转String
最新推荐文章于 2023-03-17 09:45:07 发布