0
我有一個REST服務來上傳文件,有沒有辦法知道我可能會得到什麼類型的內容?使用我的REST服務的用戶可能會上傳PDF,Word或Excel文檔。如何從REST服務獲取文件內容類型?
@POST
@Consumes(MediaType.MULTIPART_FORM_DATA)
@Path("/details/documents")
public Response uploadDocument(@FormDataParam("file") File documentContent,
@FormDataParam("documentName") String documentName)
throws Exception {
//more implementation code here to upload the file.
}