StackTips
 1 minutes

Upload image to a web service using HttpURLConnection

By Editorial @stacktips, On Sep 17, 2023 Android 2.39K Views

The following code snippet can be used to upload an image to web service in Android. After getting a Bitmap object from the camera or other source, you can compress the create an HttpURLConnection and attach the image to the request body.

try {
	URL url = new URL(SERVER_POST_URL);
	HttpURLConnection c = (HttpURLConnection) url.openConnection();
	c.setDoInput(true);
	c.setRequestMethod("POST");
	c.setDoOutput(true);
	c.connect();

	OutputStream output = c.getOutputStream();
	bitmap.compress(CompressFormat.JPEG, 50, output);
	output.close();

	Scanner result = new Scanner(c.getInputStream());
	String response = result.nextLine();
	Log.e("ImageUploader", "Error uploading image: " + response);

	result.close();
} catch (IOException e) {
		Log.e("ImageUploader", "Error uploading image", e);
}
stacktips avtar

Editorial

StackTips provides programming tutorials, how-to guides and code snippets on different programming languages.