Mas*_*ind 4 java jersey dropwizard jersey-2.0
我正在使用 dropwizard,我想一次上传多个文件。
如何更改我的代码以上传多个文件?
我正在org.glassfish.jersey.media', 'jersey-media-multipart', '2.17'
用于文件上传。
这是我的单个文件上传代码:
@Path("/uploadPhoto")
@ApiOperation(
value = "Upload a photo for an Ad",
response = Response.class)
@POST
@Timed
@UnitOfWork
@Consumes(MediaType.MULTIPART_FORM_DATA)
@Produces(MediaType.APPLICATION_JSON)
public Response fileUploaded(@FormDataParam("file") final InputStream inputStream,
@FormDataParam("file") final FormDataContentDisposition contentDispositionHeader) {
List<AdImage> images = new ArrayList<AdImage>();
images.add(writeImageAndSave(inputStream
, contentDispositionHeader));
return Response.ok(toJson(images), MediaType.APPLICATION_JSON).build();
}
Run Code Online (Sandbox Code Playgroud)
我发现这里是代码:
@Path("/uploadPhoto")
@ApiOperation(
value = "Upload a photo for an Ad",
response = Response.class)
@POST
@Timed
@UnitOfWork
@Consumes(MediaType.MULTIPART_FORM_DATA)
@Produces(MediaType.APPLICATION_JSON)
public Response uploadFile(FormDataMultiPart multiPart) {
List<AdImage> images = new ArrayList<AdImage>();
List<FormDataBodyPart> bodyParts =
multiPart.getFields("file");
for (FormDataBodyPart part : bodyParts) {
images.add(writeImageAndSave(part.getValueAs(InputStream.class
), part.getFormDataContentDisposition()));
}
return Response.ok(toJson(images), MediaType.APPLICATION_JSON).build();
}
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
2568 次 |
| 最近记录: |