
If the binary data is posted by both doGet and doPost then which one is efficient?Please give me some example by using both doGet and doPost.
Thanks in Advance

The doPost method is more efficient. It postprocess a request ,i.e, gather data from a submitted HTML form and doing some business stuff with it (conversion, validation, saving in DB, etcetera). It is safe and doest not display the data. It can send large amount of data.
If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.
Ask your questions, our development team will try to give answers to your questions.