我需要允许用户上传几种类型的文件。
<form:input path="document" type="file" accept=".doc, .docx, .pptx,.pptm, .ppt, .pdf, .xlsx, .xlsm, .xltx, .xltm " />
将文件保存为字节数组后,需要检索它以进行显示。
我对POC的了解很远。
@GetMapping(value = "/attachement", produces = {MediaType.IMAGE_JPEG_VALUE, MediaType.APPLICATION_PDF_VALUE } )
public @ResponseBody byte[] getAttachment() throws IOException {
AttachmentStore attachment = service.getAttachment(2);
return attachment.getAttachment();
}
能否请您提出我如何处理MS文件格式的建议
谢谢