Posts by mbrandino • 26 points
1 post
-
1
votes1
answer6018
viewsA: How to make a POST using the Httpurlconnection class of Android?
URL obj = new URL(url); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); //abre conexao connection.setRequestMethod("POST"); //fala que quer um post…