可以接收到 content byte[]数组,但是当我使用aspose转换成 Document 的时候,告诉我这不是一个 docx 格式的文件。请问这个 byte[]数组是 docx 的格式,还是 weboffice 的专有格式
接口大概代码
@PutMapping(value = "/updateFile/{file_id}")
public @ResponseBody String upload(@PathVariable("file_id") String fileId, @RequestBody byte[] content) {
// 可以接收到 content
// 解析转换成aspose.words.Document报错
InputStream sbs = new ByteArrayInputStream(arrays)
com.aspose.words.Document doc = new com.aspose.words.Document(sbs);//报错
}