我有一个像下面这样的休息Api。

@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);
}


我该如何测试?

最佳答案

您可以使用卷曲工具-

curl -v -F [email protected] -F http://testYouFile/endpoint


您还可以使用Chrome加载项,例如邮递员或https://chrome.google.com/webstore/detail/advanced-rest-client/hgmloofddffdnphfgcellkdfbfbjeloo

10-05 23:36