Searched refs:connection (Results 1 – 1 of 1) sorted by relevance
93 HttpURLConnection connection = null; in submitForm() local96 connection = (HttpURLConnection) url.openConnection(); in submitForm()97 connection.setInstanceFollowRedirects(false); in submitForm()98 connection.setRequestMethod("POST"); in submitForm()99 connection.setDoOutput(true); in submitForm()100 connection.setRequestProperty("Content-Type", in submitForm()104 connection.setRequestProperty("Content-Length", Integer.toString(body.length)); in submitForm()106 OutputStream output = connection.getOutputStream(); in submitForm()114 InputStream input = connection.getInputStream(); in submitForm()117 int response = connection.getResponseCode(); in submitForm()[all …]