我在下面休息一下。
@POST
@Path("/importFile")
@Consumes("application/zip")
@ApiOperation(value = "Importing File")
public List<String> importFile(InputStream is) throws IOException {
ZipInputStream zipInputStream = new ZipInputStream(is);
return importFile(zipInputStream);
}
我该如何测试?
答案 0 :(得分:1)
您可以使用卷曲工具 -
curl -v -F file=@file1.txt -F http://testYouFile/endpoint
您还可以使用邮寄员或https://chrome.google.com/webstore/detail/advanced-rest-client/hgmloofddffdnphfgcellkdfbfbjeloo
等Chrome附加组件