Java Rest sending data -
can please me sending data (mp3, wav etc.) using rest service? dont know mime type should use in service method declaration.
i have this:
 >  @path("/echo") public class myservice{    @get     @produces("text/html")     public string get(@context uriinfo ui) {       multivaluedmap queryparams=ui.getqueryparameters();       return "tyleczek";          }     @post    @consumes("application/x-www-form-urlencoded")    @produces("text/html")     public string post(multivaluedmap queryparams) {      return showqueryparams(queryparams);        }  } i triend sending byte code didnt work. can please me? thank in advance.
usually binary content transferred after being encoded in base64. check commons-codec base64 ready-to-use implementation
Comments
Post a Comment