HttpClient cannot be resolved to a type

Nabi

i'm trying to make http request in android

but i got these errors

- HttpClient cannot be resolved to a type

- DefaultHttpClient cannot be resolved to a type

screenshot:

enter image description here

SilentKnight

Delete this line:

import org.apache.http.*;

And Add these:

import org.apache.http.client.HttpClient;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related