Reputation: 21
Am trying to upload a multipart files using jquery form data and trying to receive the file using jax-rs and need to write the files to disk and am able to recieve the file but how to write to disk?
@POST
@Consumes("multipart/form-data")
public Response postFormData(@FormParam("thefile") File theFile) {
// how to write the file to disk..
}
Upvotes: 0
Views: 496