So my question is how can I create a DELETE Request to an URL in Android Studio Java. I already have an Async Task which GET json from URL. So my question now is how can I create a DELETE request
EDIT:
So right now I got this code:
   int pos = arrlist.get(info.position).getId();
                    URL_DELETE = "http://testserver/test/tesst.php?id=" + pos + "&username=" + username + "&password=" + password;
                    URL url = null;
                    try {
                        url = new URL(URL_DELETE);
                        HttpURLConnection httpCon = (HttpURLConnection) url.openConnection();
                        httpCon.setDoOutput(true);
                        httpCon.setRequestProperty(
                                "Content-Type", "application/x-www-form-urlencoded" );
                        httpCon.setRequestMethod("DELETE");
                    } catch (MalformedURLException e) {
                        e.printStackTrace();
                    } catch (ProtocolException e) {
                        e.printStackTrace();
                    } catch (IOException e) {
                        e.printStackTrace();
                    }
To understand the content of the given URL should be deleted. But if I run the code nothing happens.
 
     
    