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

Popular posts from this blog

delphi - How to convert bitmaps to video? -

jasper reports - Fixed header in Excel using JasperReports -

python - ('The SQL contains 0 parameter markers, but 50 parameters were supplied', 'HY000') or TypeError: 'tuple' object is not callable -