Here is the code to delete files from server. I am getting java.io.IOException: unsupported method: DELETE. Is there any alternative to delete files from server, please help me ASAP.
conn = (HttpConnection) Connector.open(url);
conn.setRequestMethod(“DELETE”);
conn.setRequestProperty
(“Authorization”, “Basic ” + mClub.enc_str);
int responseCode = conn.getResponseCode();