我正在使用HWPFDocument修改一些doc文件。但是,当我尝试使用锚点图像保存新的doc文件时,图像将被破坏。有什么方法可以处理这种情况吗?这是我的一些代码。
File file = new File("testdoc.doc");
FileInputStream fis = new FileInputStream(file);
POIFSFileSystem poifs = new POIFSFileSystem(fis);
HWPFDocument doc = new HWPFDocument(poifs);
FileOutputStream out = new FileOutputStream("testtt.doc");
doc.write(out);
out.close();
doc.close();
我不会修改doc文件的任何内容,但是锚图像仍然会被破坏。