i m trying to send post request to webservice.. when i add special character @ in parameter it is coverted to %40.i have checked server side..they are getting %40...
  • April 8, 2022
  • 0 Comments
You can use java.net.HttpUrlConnection. Example (from here), with improvements. Included in case of link rot: public static String executePost(String targetURL, String urlParameters) { HttpURLConnection connection = null; try {...
  • April 4, 2022
  • 0 Comments
You can use java.net.HttpUrlConnection. Example (from here), with improvements. Included in case of link rot: public static String executePost(String targetURL, String urlParameters) { HttpURLConnection connection = null; try {...
  • April 4, 2022
  • 0 Comments