Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install HttpClient library from Apache?

import org.apache.http.client.*;

I want to import this java package it says that it doesn't exist, so where should I download this package from, and where to install it ?

like image 302
Borut Flis Avatar asked Sep 28 '11 15:09

Borut Flis


People also ask

What is HttpClient Apache?

Http client is a transfer library. It resides on the client side, sends and receives Http messages. It provides up to date, feature-rich, and an efficient implementation which meets the recent Http standards.

What is the use of HttpClient jar?

HttpClient seeks to fill this void by providing an efficient, up-to-date, and feature-rich package implementing the client side of the most recent HTTP standards and recommendations.


1 Answers

You can download the jar file from the Maven Repository.

You just need to place the jar on the classpath, no need to install anything.

like image 74
Hamed Avatar answered Sep 25 '22 18:09

Hamed