The supplied data appears to be in the OLE2 Format. You are calling the part of POI that deals with OOXML (Office Open XML) Documents. You need to call a different part of POI to process this data (eg HSSF instead of XSSF)
时间: 2023-08-16 19:11:06 浏览: 411
这个问题看起来是关于使用Apache POI处理文档时出现的错误。根据错误信息,你正在尝试处理OLE2格式的数据,而你应该使用另一部分POI处理它(例如HSSF而不是XSSF)。这个问题的解决方法是使用正确的POI部分来处理你的数据。如果你正在使用Java,你可以在代码中指定正确的POI部分来处理你的数据。例如,如果你想处理一个XLS文件,你应该使用HSSF而不是XSSF。如果你需要更多帮助,请告诉我具体的问题和场景。
相关问题
The supplied data appears to be in the OLE2 Format. You are calling the part of POI that deals with OOXML (Office Open XML) 是什么原因
这个错误通常是因为你尝试读取的 Word 文档不是 OOXML 格式(.docx),而是 OLE2 格式(.doc)。Apache POI 库中的 `XWPFDocument` 类只能处理 OOXML 格式的文档。
如果你要读取 OLE2 格式的 Word 文档,你可以使用 `HWPFDocument` 类。这是 Apache POI 库中处理旧版 Word 文档的类。以下是一个读取 OLE2 格式文档的示例代码:
```java
import org.apache.poi.hwpf.HWPFDocument;
import org.apache.poi.hwpf.extractor.WordExtractor;
import java.io.FileInputStream;
import java.io.IOException;
public class WordReader {
public static void main(String[] args) {
try {
FileInputStream file = new FileInputStream("path/to/your/doc/file.doc");
HWPFDocument doc = new HWPFDocument(file);
WordExtractor extractor = new WordExtractor(doc);
String text = extractor.getText();
System.out.println(text);
doc.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
```
请注意,在使用 `HWPFDocument` 时,你需要将文档的扩展名更改为 `.doc`,并且使用 `WordExtractor` 来提取文档的内容。
希望这次能够解决你的问题!如果还有其他疑问,请随时问我。
The supplied data appears to be in the OLE2 Format. You are calling the part of POI that deals with OOXML
"The supplied data appears to be in the OLE2 Format. You are calling the part of POI that deals with OOXML (Office Open XML) Documents. You need to call a different part of POI to process this data (e.g. HSSF instead of XSSF)"这个错误是由于使用了错误的POI部分处理给定的数据格式引起的。您需要调用POI的另一个部分来处理数据。具体来说,如果您处理的是doc文件,应该使用HWPFDocument来读取;如果您处理的是xls文件,应该使用HSSFWorkbook来读取。如果您处理的是docx文件,应该使用XWPFDocument来读取;如果您处理的是xlsx文件,应该使用XSSFWorkbook来读取。请根据您所处理的文件类型选择正确的POI部分进行处理。<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* *2* [The supplied data appears to be in the OLE2 Format.](https://blog.csdn.net/qq_40014707/article/details/114318042)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *3* [POI OLE2NotOfficeXmlFileException:The supplied data appears to be in the OLE2 Format问题解决](https://blog.csdn.net/qq_38974638/article/details/116210340)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文