문제

here is the snapshot of the code

I am trying to use http request and response method but i am getting error that

The import org.apache.commons cannot be resolved

i have included httpcore.jar, httpclient.jar, httpmime.jar but yet i am getting error.

도움이 되었습니까?

해결책

You've imported versions 4.3+ of the libraries but are trying to use the old HTTP commons classes (version 3?), ie GetMethod.

The HttpClient is in package org.apache.http.client. The new version of GetMethod is HttpGet.

It's all here.

다른 팁

You can download jar file from below link and import in your project

Download jar File

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top