3
有誰知道如何在REST風格的Web服務中使用java上傳數據以便上傳數據? 我發現smartupload和commons.upload只是用於網頁。在REST Web服務中上傳數據方法
有誰知道如何在REST風格的Web服務中使用java上傳數據以便上傳數據? 我發現smartupload和commons.upload只是用於網頁。在REST Web服務中上傳數據方法
你可以使用一些JAX-RS庫,像Apache Wink,所以你可以寫這樣的事情:
@Path("/upload")
class UploadResource {
@POST
@Consumes(MediaType.APPLICATION_OCTET_STREAM)
public Response upload(byte[] input) {
// store input somewhere
return Response.ok().build();
}
}
所以,你會receieve文件是byte[]
。您還可以接收爲InputStream:
@Path("/upload")
class UploadResource {
@POST
@Consumes(MediaType.APPLICATION_OCTET_STREAM)
public Response upload(InputStream input) {
// store input somewhere
return Response.ok().build();
}
}