writing the uploaded files to disk received using jax rs

360 Views Asked by At

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..

} 
0

There are 0 best solutions below