Sto implementando il servizio web di resto utilizzando Jersey. Devo avere l'oggetto di ServletContext per salvare il file nella directory dell'applicazione. Per favore aiutami a ottenere il contesto.Come ottenere il servizio web ServletContext in Rest
Sto chiamando questo webservice dal dispositivo Android.
Grazie in anticipo.
@Path("notice")
public class NoticeResources {
@Resource
private ServletContext context;
@POST
@Path("uploadphoto")
@Consumes(MediaType.MULTIPART_FORM_DATA)
@Produces("text/plain")
public String uploadNotices(@FormDataParam("file") InputStream uploadedInputStream) {
File photoDirectory = new File("\\photo");
// if the directory does not exist, create it
if (!photoDirectory.exists()) {
boolean result = photoDirectory.mkdir();
if(result){
System.out.println("DIR created");
}
}
String rootPath = photoDirectory.getAbsolutePath();
String uploadedFileLocation = rootPath + "\\photo.jpg";
// save it
try {
writeToFile(uploadedInputStream, uploadedFileLocation);
} catch(Exception e) {
return "no" + rootPath;
}
return "yes" + rootPath;
}
// save uploaded file to new location
private void writeToFile(InputStream uploadedInputStream, String uploadedFileLocation) throws Exception {
OutputStream out = new FileOutputStream(new File(uploadedFileLocation));
int read = 0;
byte[] bytes = new byte[1024];
out = new FileOutputStream(new File(uploadedFileLocation));
while ((read = uploadedInputStream.read(bytes)) != -1) {
out.write(bytes, 0, read);
}
out.flush();
out.close();
}
}
+1 Credo che possa essere iniettato anche nei metodi come parametri (almeno in RESTEasy questo è possibile, Jersey dovrebbe essere lo stesso). – acdcjunior
Hai ragione, non l'ho incluso poiché non è stato chiesto esplicitamente nella domanda OP, ma lo includerò. – ikumen
+1. Bello ... è utile. –