如何编写使用Excel文件的Rest Service Post?

时间:2014-01-27 14:29:36

标签: java excel rest post

我必须编写一个使用Excel文件的Restful服务将其映射到类中并将其写入数据库。

@POST
@Path("/insertDataInDB)
@Consumes(MediaType.???)
public Response insertDataInDB(???) {
   //do Stuff
}

我的第一个想法是使用ByteStream而不是使用Apache POI解释Stream。 但在这里我得到了一个例外:“org.jboss.resteasy.spi.UnsupportedMediaTypeException”

@POST
@Path("/insertDataInDB")
@Consumes(MediaType.MULTIPART_FORM_DATA)
public void insertDataInDB(@FormDataParam("inputfile")
File inputfile) {
    //do Stuff
}

有谁知道要使用什么样的MediaType以及什么样的java DataType?

或者有更好的主意?

1 个答案:

答案 0 :(得分:3)

对于有同样问题的人,这对我有用。

@POST
@Path("/insertDataInDB")
@Consumes(MediaType.MULTIPART_FORM_DATA)
public void insertDataInDB2(@FormDataParam("inputfile")
MultipartFormDataInput inputfile) {

    Map<String, List<InputPart>> uploadForm = inputfile.getFormDataMap();
    List<InputPart> inputParts = uploadForm.get("inputfile");

    //i have only one inputPart
    InputPart inputPart = inputParts.get(0);

    try {
        InputStream inputStream = inputPart.getBody(InputStream.class, null);

        XSSFWorkbook workbook = new XSSFWorkbook(inputStream);
        XSSFSheet sheet = workbook.getSheetAt(0);
        System.out.println(sheet.getSheetName());

    } catch (IOException e) {
        e.printStackTrace();
    }
}